plot.icsurv(Icens)
plot.icsurv()所属R语言包:Icens
A plot method for the estimates produced by the estimation
一个图估计产生的估计方法
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Produces nice plots of the estimated NPMLE.
好的图估计NPMLE产生。
用法----------Usage----------
## S3 method for class 'icsurv'
plot(x, type="eq", surv=FALSE, bounds=FALSE, shade=3, density=30,
angle=45, lty=1, new=TRUE, xlab="Time", ylab="Probability", main="GMLE",
ltybnds=2, ...)
参数----------Arguments----------
参数:x
The estimate of the NPMLE.
估计的NPMLE。
参数:type
Three options, "eq" for equivalence call, "gw" for the Groeneboom-Wellner estimate, and "lc" for the left-continuous estimate.
三个选项,“EQ”为等价的呼叫,“GW”为的Groeneboom Wellner估计,“LC”左连续的估计。
参数:surv
Logical indicating whether or not to plot the survival curve.
逻辑表明是否绘制生存曲线。
参数:bounds
Logical indicating whether or not to include bounds around the estimate.
逻辑说明是否包括估计周围的界限。
参数:shade
An integer in 1, 2, or 3 denoting what component of the plot to shade.
在整数1,2,或3汉语表什么的树荫图的组件。
参数:density
The density of shading lines, in lines per inch.
阴影线的密度,以每英寸线。
参数:angle
The slope of shading lines, given as an angle in degrees (counter-clockwise).
坡的阴影线,角度(逆时针)。
参数:lty
The line type for the estimates.
估计线路类型。
参数:new
Logical indicating whether or not to create a new plot.
逻辑表明是否要创建一个新的图。
参数:xlab
The x-axis label.
x轴的标签。
参数:ylab
The y-axis label.
y轴的标签。
参数:main
The main title for the plot.
图的主标题。
参数:ltybnds
The line type for the bounds on the estimates.
估计边界线类型。
参数:...
Additional arguments passed to the plot function.
额外的参数传递给绘图功能。
值----------Value----------
No value is returned. A plot of the NPMLE is made on the active graphics device.
无返回值。一个图的NPMLE作出积极的图形设备。
作者(S)----------Author(s)----------
Alain Vandal and Robert Gentleman.
参见----------See Also----------
VEM, ISDM, EMICM,
VEM,ISDM,EMICM
举例----------Examples----------
data(cosmesis)
csub1 <- subset(cosmesis, subset=Trt==0, select=c(L,R))
e1 <- VEM(csub1)
par(mfrow=c(2,2))
plot(e1)
data(pruitt)
e2 <- EM(csub1)
plot(e2)
e3 <- PGM(csub1)
plot(e3)
e4 <- EMICM(csub1)
plot(e4)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|