如何从ezBoot(ez包)中提取置信区间?

时间:2015-11-06 05:42:33

标签: r package

我正在使用ez包中的ezBoot function。我想提取用相同包的ezPlot2函数绘制的置信区间。

可以在ezBoot function

中找到一个示例
#Read in the ANT data (see ?ANT).
data(ANT)
head(ANT)
ezPrecis(ANT)

#Run ezBoot on the accurate RT data
rt = ezBoot(
    data = ANT
    , dv = rt
    , wid = subnum
    , within = .(cue,flank)
    , between = group
    , iterations = 1e1 #1e3 or higher is best for publication
)


#plot the full design
p = ezPlot2(
    preds = rt
    , x = flank
    , split = cue
    , col = group
)
print(p)

如何提取置信区间?

1 个答案:

答案 0 :(得分:0)

没关系,我没有阅读[ezPlot2函数](http://www.inside-r.org/packages/cran/ez/docs/ezPlot2)的完整参数集。公平地说,初始描述表明函数用于显示,但是如果参数do_plot设置为true,那么它将返回点预测(我猜它是平均值)和置信区间:

  

do_plot:逻辑。如果为TRUE,则不会生成绘图,而是生成数据框   将返回包含点预测和置信限制。