survTP(TPmsm)
survTP()所属R语言包:TPmsm
Create a survTP object
创建一个survTP对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Creates a survTP object, usually used as input to other functions.
创建一个survTP的对象,通常用作输入等功能。
用法----------Usage----------
survTP(time1, event1, Stime, event, covariate=NULL)
is.survTP(object)
参数----------Arguments----------
参数:time1
Time of the transition into state 2, state 3 or censoring time.
时间过渡到状态2,状态3或审查时间。
参数:event1
Indicator of transition into state 2 or state 3; 0 if the transition time is censored and 1 otherwise.
如果过渡时间被审查,否则为1的指标过渡到状态2或状态3 0。
参数:Stime
The total time of the process.
的过程中的总时间。
参数:event
Censoring indicator of the total time of the process; 0 if the total time is censored and 1 otherwise.
定时截尾的指标的过程的总时间; 0如果总时间被审查,否则为1。
参数:covariate
Any covariate variable.
任何协变量。
参数:object
Any R object.
任何R对象。
值----------Value----------
An object of class survTP.
对象的类survTP。
survTP objects are implemented as a single element list
survTP对象被实现为一个单一的元素的列表
参数:data
a data.frame with time1, event1, Stime, event and covariate as columns.
数据框time1,event1,Stime,event和covariate列。
In the case of is.survTP, a logical value TRUE if object inherits from class survTP, otherwise FALSE.
的情况下,is.survTP,一个逻辑值,TRUE如果object继承自类survTP,否则FALSE。
(作者)----------Author(s)----------
Artur Agostinho Araujo, Javier Roca-Pardinas and Luis Meira Machado
实例----------Examples----------
data(bladderTP)
bladderTP_obj <- with(bladderTP, survTP(time1, event1, Stime, event))
#or[或]
bladderTP_obj <- survTP(bladderTP$time1, bladderTP$event1, bladderTP$Stime,
bladderTP$event)
data(heartTP)
heartTP_obj <- with(heartTP, survTP(time1, event1, Stime, event, age))
#or[或]
heartTP_obj <- survTP(heartTP$time1, heartTP$event1, heartTP$Stime,
heartTP$event, heartTP$age)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|