AaJ.Lexis {Epi} | R Documentation |
The Aalen-Johansen estimator of state probabilities from a
multistate Lexis
object.
Description
The Aalen-Johansen estimator is computed on the basis of a
Lexis
multistate object along a given time scale. The
function is merely a wrapper for the survfit
.
Usage
## S3 method for class 'Lexis'
AaJ(Lx,
formula = ~ 1,
timeScale = 1, ...)
Arguments
Lx |
A |
formula |
A one-sided formula passed on to |
timeScale |
Character or integer, selecting one of the timescales
of the |
... |
Arguments passed on. Ignored |
Value
An object of class survfitms
— see
survfit
.
Author(s)
Bendix Carstensen, http://bendixcarstensen.com
See Also
Examples
data(DMlate)
str(DMlate)
dml <- Lexis(entry = list(Per = dodm,
Age = dodm-dobth,
DMdur = 0 ),
exit = list(Per = dox),
exit.status = factor(!is.na(dodth),
labels = c("DM","Dead")),
data = DMlate )
# Cut the follow-up at insulin start
dmi <- cutLexis(dml,
cut = dml$doins,
new.state = "Ins",
split.state = TRUE)
summary( dmi )
ms <- AaJ.Lexis(dmi, timeScale = "DMdur")
class(ms)
ms$states
head(ms$pstate)
[Package Epi version 2.53 Index]