tpchreg | R Documentation |
Proportional hazards regression with piecewise constant hazards and tabular data.
tpchreg(formula, data, time, weights, last, subset, na.action,
contrasts = NULL, start.coef = NULL,
control = list(epsilon = 1.e-8, maxit = 200, trace = FALSE))
formula |
a formula with 'oe(count, exposure) ~ x1 + ...' |
data |
a data frame with occurrence/exposure data plus covariates. |
time |
the time variable, a factor character vector indicating time intervals, or numeric, indicating the start of intervals. |
weights |
Case weights. |
last |
If |
subset |
subset of data, not implemented yet. |
na.action |
Not implemented yet. |
contrasts |
Not implemented yet. |
start.coef |
For the moment equal to zero, not used. |
control |
list of control parameters for the optimization. |
The interpretation of cuts is different from that in hpch
.
This is intentional.
oe
.
sw <- swepop
sw$deaths <- swedeaths$deaths
fit <- tpchreg(oe(deaths, pop) ~ strata(sex) + I(year - 2000),
time = age, last = 101, data = sw[sw$year >= 2000, ])
summary(fit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.