gpt4 book ai didi

r - Bootstrap 标准错误位于引导类中的什么位置?

转载 作者:行者123 更新时间:2023-12-04 12:14:15 24 4
gpt4 key购买 nike

考虑以下 bootstrap :

library(MASS)
library(boot)

# c)
set.seed(1)
boot.fn= function(data, index) mean(data[index])
output=boot(Boston$medv, boot.fn, 1000)

如果我们运行 print(output) ,我们得到
Call:
boot(data = Boston$medv, statistic = boot.fn, R = 1000)


Bootstrap Statistics :
original bias std. error
t1* 22.53281 0.008517589 0.4119374

但是,当我检查 output 时对象,我找不到表示引导统计数据的值。在哪里 original , biasstd. error在实际 output引导返回的对象?

最佳答案

它们由 print.boot 计算而不是存储在 boot 中目的。看 getAnywhere(print.boot)详情。

您可以自己计算这些值,也可以使用 capture.output .

对于您的示例:

#original:
output$t0
#bias:
mean(output$t)-output$t0
#se:
sd(output$t)

关于r - Bootstrap 标准错误位于引导类中的什么位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19963512/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com