metaplot(rmeta)
metaplot()所属R语言包:rmeta
Meta-analysis plot (forest plot)
Meta分析图(森林图)
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Plot confidence intervals with boxes indicating the sample size/precision and optionally a diamond indicating a summary confidence interval. This function is usually called by plot methods for meta-analysis objects.
图置信区间盒说明的样本量/精度和可选的钻石表示一个总结的置信区间。此功能通常被称为plot进行荟萃分析对象的方法。
用法----------Usage----------
metaplot(mn, se, nn=NULL, labels=NULL, conf.level=0.95,
xlab="Odds ratio", ylab="Study Reference",xlim=NULL,
summn=NULL, sumse=NULL, sumnn=NULL, summlabel="Summary",
logeffect=FALSE, lwd=2, boxsize=1,
zero=as.numeric(logeffect), colors=meta.colors(),
xaxt="s", logticks=TRUE, ...)
参数----------Arguments----------
参数:mn
point estimates from studies
从研究的点估计
参数:se
standard errors of mn
标准误差mn
参数:nn
precision: box ares is proportional to this. 1/se^2 is the default
。精度:战神箱,此成正比的。 1/se^2是默认的
参数:labels
labels for each interval
每个间隔的标签
参数:conf.level
Confidence level for confidence intervals
置信区间的置信水平
参数:xlab
label for the point estimate axis
点估计轴标签
参数:ylab
label for the axis indexing the different studies
标签轴分度不同的研究
参数:xlim
the range for the x axis.
的范围内的x轴。
参数:summn
summary estimate
总概算
参数:sumse
standard error of summary estimate
摘要估计的标准误差
参数:sumnn
precision of summary estimate
总概算的精度
参数:summlabel
label for summary estimate
总概算的标签
参数:logeffect
TRUE to display on a log scale
TRUE显示对数标度
参数:lwd
line width
线宽度
参数:boxsize
Scale factor for box size
盒大小的比例系数
参数:zero
"Null" effect value
“空”的效应值
参数:xaxt
use "n" for no x-axis (to add a customised one)
使用"n"没有x轴(添加一个定制)
参数:logticks
if TRUE and logscale, have tick values approximately equally spaced on a log scale.
如果TRUE和logscale,对数标度大致相等间隔的刻度值。
参数:colors
see meta.colors
看到meta.colors
参数:...
Other graphical parameters
其他图形参数
值----------Value----------
This function is used for its side-effect.
此功能被用于其副作用。
参见----------See Also----------
forestplot for more flexible plots
forestplot更灵活的图
plot.meta.DSL, plot.meta.MH, plot.meta.summaries
plot.meta.DSL,plot.meta.MH,plot.meta.summaries
实例----------Examples----------
data(catheter)
a <- meta.MH(n.trt, n.ctrl, col.trt, col.ctrl, data=catheter,
names=Name, subset=c(13,6,5,3,7,12,4,11,1,8,10,2))
metaplot(a$logOR, a$selogOR, nn=a$selogOR^-2, a$names,
summn=a$logMH, sumse=a$selogMH, sumnn=a$selogMH^-2,
logeffect=TRUE)
metaplot(a$logOR, a$selogOR, nn=a$selogOR^-2, a$names,
summn=a$logMH, sumse=a$selogMH, sumnn=a$selogMH^-2,
logeffect=TRUE,logticks=FALSE)
## angry fruit salad[#愤怒的水果沙拉]
metaplot(a$logOR, a$selogOR, nn=a$selogOR^-2, a$names,
summn=a$logMH, sumse=a$selogMH, sumnn=a$selogMH^-2,
logeffect=TRUE, colors=meta.colors(box="magenta",
lines="blue", zero="red", summary="orange",
text="forestgreen"))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|