kmplt (RCASPAR)
kmplt ()所属R语言包:RCASPAR
Plot Kaplan Meier curve
图卡普兰Meier曲线
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function plots the survival curve for the provided data set as a Kaplan Meier plot. It can only be used for visualization and returns no numeric values.
此功能设置作为卡普兰迈尔图的所提供的数据的生存曲线图。它只能用于可视化,并没有返回数值。
用法----------Usage----------
kmplt(data, title)
参数----------Arguments----------
参数:data
A data frame containing at least the two columns “censored” and “True_STs”. Where “censored” contains the censorship status of the subject as either “0/F” for "uncensored subjects" or “$1$/T” for "censored subjects". This information is essential to be able to plot the KM curve.
一个数据框包含至少两列“审查”和“True_STs”。这里的“审查”包含主体的审查状态,无论是“0 / F”代表“未经审查的科目”或“$ 1美元/吨”,“审查对象”。这个信息是必不可少的,能够绘制的KM曲线。
参数:title
A string of characters denoting the title of the plot produced.
表示图的标题的字符的字符串产生。
Details
详情----------Details----------
Note that this function was intended only for visualization and does not return any numerical values as such.
请注意,此功能仅用于可视化和不返回任何数值等。
值----------Value----------
A plot of the survival function “S(t)” against the survival times (unit-less) as calculated for the provided data set.
的生存函数S(T)“的生存时间(单位)提供的数据集计算的暗算。
作者(S)----------Author(s)----------
Douaa Mugahid
参考文献----------References----------
http://www.bmj.com/statsbk/12.dtl
举例----------Examples----------
censored <- c(1, 0, 1, 1, 1, 0, 1, 0, 0, 0)
True_STs <- c(1, 4, 5, 4, 6, 3, 2, 1, 3, 4)
dat <- as.data.frame(cbind(True_STs, censored))
kmplt(dat, "test")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|