cummeta(rmeta)
cummeta()所属R语言包:rmeta
Cumulative meta-analysis of binary data
累积的二进制数据的荟萃分析
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A cumulative meta-analysis plot shows how evidence has accumulated over time. The ith line in the cumulative meta-analysis plot is the summary produced by a meta-analysis of the first i trials.
证据的累积荟萃分析图显示了如何随着时间的推移积累。 i的累积荟萃分析图是日线所产生的第一个i试验的荟萃分析总结。
用法----------Usage----------
cummeta(ntrt, nctrl, ptrt, pctrl, conf.level = 0.95, names = NULL, data=
NULL, subset = NULL, na.action = na.fail, method = c("meta.MH", "meta.DSL"), statistic = "OR")
cummeta.summaries(effects,stderrs, conf.level = 0.95, names = NULL,weights=NULL, data= NULL, subset = NULL, na.action = get(getOption("na.action")), method = c("fixed", "random"), logscale=TRUE)
## S3 method for class 'meta.cum':
plot(x, conf.level = NULL, colors = meta.colors(), xlab = NULL,
summary.line = TRUE, summary.conf = FALSE, main="Cumulative meta-analysis", lwd=1, ...)
## S3 method for class 'meta.cum':
summary(object ,conf.level=NULL,...)
参数----------Arguments----------
参数:ntrt
Number of subjects in treated/exposed group
在处理/对照组中的受试者数
参数:nctrl
Number of subjects in control group
在对照组的受试者数
参数:ptrt
Number of events in treated/exposed group
在处理/对照组中的事件数
参数:pctrl
Number of events in control group
在对照组的事件数
参数:effects
Difference between control and treatment group
对照组和治疗组之间的差异
参数:stderrs
Standard errors of effects
标准误差effects
参数:weights
Study weights (see meta.summaries)
研究的权重(见meta.summaries)
参数:names
names or labels for studies
名称或标签进行研究
参数:data
data frame to interpret variables
数据框的解释变量
参数:subset
subset of studies to include
子集的研究,包括
参数:na.action
How to handle missing values
如何处理缺失值
参数:method
Which meta-analysis method to use
元分析方法使用
参数:statistic
"OR" for odds ratio or "RR" for relative risk.
“OR”或“RR”相对风险比值比。
参数:logscale
The effects values are the logarithms of actual effects (for plotting)
effects值是对数的实际效果(用于绘图)
参数:x, object
a meta.cum object
meta.cum对象
参数:...
other graphical arguments for metaplot
其他图形参数metaplot
参数:conf.level
Coverage for confidence intervals
置信区间的覆盖范围
参数:colors
see meta.colors
看到meta.colors
参数:xlab
X-axis label
X轴标签
参数:summary.line
Plot a vertical line at the final summary value?
绘制一条垂直线,在最后的汇总值吗?
参数:summary.conf
Plot vertical lines at the final confidence interval limits?
在最后的置信区间的边界,绘制垂直线?
参数:main,lwd
graphical parameters
图形参数
值----------Value----------
Object of class meta.cum.
对象类meta.cum。
参见----------See Also----------
meta.MH,meta.DSL
meta.MH,meta.DSL
实例----------Examples----------
data(cochrane)
steroid<-cummeta(n.trt,n.ctrl,ev.trt,ev.ctrl,names=name,data=cochrane,statistic="RR",method="meta.MH")
plot(steroid)
summary(steroid)
data(catheter)
b <- meta.DSL(n.trt, n.ctrl, col.trt, col.ctrl, data=catheter,
names=Name, subset=c(13,6,5,3,12,4,11,1,8,10,2))
d <- cummeta.summaries(b$logs, b$selogs, names=b$names,
method="random", logscale=TRUE)
plot(d,summary.conf=TRUE)
summary(d)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|