This is the general data transformation function provided by the
pammtools
package. Two main applications must be distinguished:
Transformation of standard time-to-event data.
Transformation of time-to-event data with time-dependent covariates (TDC).
For the latter, the type of effect one wants to estimate is also
important for the data transformation step.
In any case, the data transformation is specified by a two sided formula.
In case of TDCs, the right-hand-side of the formula can contain formula specials
concurrent
and cumulative
.
See the data-transformation
vignette for details.
as_ped(data, ...)# S3 method for data.frame
as_ped(
data,
formula,
cut = NULL,
max_time = NULL,
tdc_specials = c("concurrent", "cumulative"),
...
)
# S3 method for nested_fdf
as_ped(data, formula, ...)
# S3 method for list
as_ped(data, formula, tdc_specials = c("concurrent", "cumulative"), ...)
is.ped(x)
# S3 method for ped
as_ped(data, newdata, ...)
# S3 method for pamm
as_ped(data, newdata, ...)
Either an object inheriting from data frame or in case of time-dependent covariates a list of data frames, where the first data frame contains the time-to-event information and static covariates while the second (and potentially further data frames) contain information on time-dependent covariates and the times at which they have been observed.
Further arguments passed to the data.frame
method and
eventually to survSplit
A two sided formula with a Surv
object
on the left-hand-side and covariate specification on the right-hand-side (RHS).
The RHS can be an extended formula, which specifies how TDCs should be transformed
using specials concurrent
and cumulative
.
Break points, used to partition the follow up into intervals. If unspecified, all unique event times will be used.
If cut
is unspecified, this will be the last
possible event time. All event times after max_time
will be administratively censored at max_time
.
A character vector. Names of potential specials in
formula
for concurrent and or cumulative effects.
any R object.
A new data set (data.frame
) that contains the same
variables that were used to create the PED object (codedata).
A data frame class ped
in piece-wise exponential data format.
# NOT RUN {
tumor[1:3, ]
tumor[1:3, ] %>% as_ped(Surv(days, status)~ age + sex, cut = c(0, 500, 1000))
tumor[1:3, ] %>% as_ped(Surv(days, status)~ age + sex)
# }
Run the code above in your browser using DataLab