plot.coxreg(eha)
plot.coxreg()所属R语言包:eha
Plots of survivor functions.
图的幸存者功能。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Baseline hazards estimates.
基线危险的估计。
用法----------Usage----------
## S3 method for class 'coxreg'
plot(x, fn = c("cum", "surv", "log", "loglog"), fig = TRUE,
xlim=NULL, ylim=NULL, main=NULL, xlab="Duration", ylab="",
new.data = NULL, ...)
参数----------Arguments----------
参数:x
A coxreg object, typically the output from link{coxreg}.
Acoxreg对象,通常的输出link{coxreg}。
参数:fn
Which type of plot?
哪种类型的图?
参数:fig
Should a plot actually be produced? Default is TRUE.
实际生产的图?默认值是TRUE。
参数:xlim
Horizontal plot limits. If NULL, calculated by the function.
水平图的限制。如果为NULL,由该函数计算。
参数:ylim
Vertical plot limits. If NULL, set to c(0, 1) for a survival plot, otherwise adaptive, data dependent.
垂直图的限制。如果设置为NULL,c(0, 1)生存的图,否则自适应,数据依赖。
参数:main
A heading for the plot.
一个标题为图。
参数:xlab
Label on the x axis.
标签在x轴上。
参数:ylab
Label on the y-axis.
标签上的y轴。
参数:new.data
At what covariate values should the calculations be done? Default is the mean values of the covariates.
在什么样的协变量值的计算应该怎么办?默认值是协变量的平均值。
参数:...
Anything that plot.default likes...
凡是plot.default喜欢...
Details
详细信息----------Details----------
This function is a wrapper for plot.hazdata.
此功能的包装plot.hazdata。
值----------Value----------
A list where the elements are two-column matrices, one for each stratum in the model. The first column contains risktimes, and the second the y coordinates for the requested curve.
一个列表,其中的元素是两列的矩阵,在模型中各阶层之一。第一列包含risktimes,和所述第二请求的曲线的y坐标。
(作者)----------Author(s)----------
G枚ran Brostr枚m
实例----------Examples----------
time0 <- numeric(50)
group <- c(rep(0, 25), rep(1, 25))
time1 <- rexp( 50, exp(group) )
event <- rep(1, 50)
fit <- coxreg(Surv(time0, time1, event) ~ strata(group))
plot.coxreg(fit)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|