jack.after.boot
位于 boot
包(package)。 说明
此函数从引导程序输出对象计算折刀影响值并绘制相应的 jackknife-after-bootstrap 图。
用法
jack.after.boot(boot.out, index = 1, t = NULL, L = NULL,
useJ = TRUE, stinf = TRUE, alpha = NULL,
main = "", ylab = NULL, ...)
参数
boot.out |
类 |
index |
|
t |
长度为 |
L |
感兴趣统计的经验影响值。仅当 |
useJ |
一个逻辑变量,指示是否应使用从引导重复计算得出的折刀影响值。如果 |
stinf |
一个逻辑变量,指示在绘制折刀值之前是否对其进行标准化。如果 |
alpha |
需要绘图的分位数。默认为 |
main |
给出情节主标题的字符串。 |
ylab |
Y 轴的标签。如果使用 |
... |
|
细节
每个观测值的居中折刀分位数是根据未出现特定观测值的引导样本估计的。然后根据影响值绘制这些结果。如果useJ
是TRUE
,则影响值的查找方式与排除观测值的样本中的统计平均值与所有样本中的平均值之间的差值相同。如果useJ
是FALSE
,则通过调用empinf
计算经验影响值。
生成的图是有用的诊断工具,可用于查看各个观察结果影响引导程序输出的方式。
该图将由许多水平虚线组成,这些虚线对应于中心引导分布的分位数。对于每个数据点,通过省略该点计算出的引导分布的分位数根据(可能是标准化的)折刀值绘制。观察编号打印在图下方。为了更容易看到省略分位数上的点的效果,绘制的分位数由线段连接。这些图提供了一个有用的诊断工具,用于确定个体观察对引导分布的影响。请参阅下面的引用,了解有关绘图解释的一些指南。
值
没有返回值,但在当前图形显示上生成绘图。
副作用
在当前图形设备上创建绘图。
例子
# To draw the jackknife-after-bootstrap plot for the head size data as in
# Example 3.24 of Davison and Hinkley (1997)
frets.fun <- function(data, i) {
pcorr <- function(x) {
# Function to find the correlations and partial correlations between
# the four measurements.
v <- cor(x)
v.d <- diag(var(x))
iv <- solve(v)
iv.d <- sqrt(diag(iv))
iv <- - diag(1/iv.d) %*% iv %*% diag(1/iv.d)
q <- NULL
n <- nrow(v)
for (i in 1:(n-1))
q <- rbind( q, c(v[i, 1:i], iv[i,(i+1):n]) )
q <- rbind( q, v[n, ] )
diag(q) <- round(diag(q))
q
}
d <- data[i, ]
v <- pcorr(d)
c(v[1,], v[2,], v[3,], v[4,])
}
frets.boot <- boot(log(as.matrix(frets)), frets.fun, R = 999)
# we will concentrate on the partial correlation between head breadth
# for the first son and head length for the second. This is the 7th
# element in the output of frets.fun so we set index = 7
jack.after.boot(frets.boot, useJ = FALSE, stinf = FALSE, index = 7)
参考
Davison, A.C. and Hinkley, D.V. (1997) Bootstrap Methods and Their Application. Cambridge University Press.
Efron, B. (1992) Jackknife-after-bootstrap standard errors and influence functions (with Discussion). Journal of the Royal Statistical Society, B, 54, 83-127.
也可以看看
相关用法
- R poisons 动物生存时间
- R ducks 杂交鸭的行为和羽毛特征
- R nodal 前列腺癌的淋巴结受累
- R cloth 布料瑕疵数量
- R polar 新喀里多尼亚红土的极点位置
- R capability 模拟制造过程数据
- R beaver 海狸体温数据
- R saddle.distn Bootstrap 统计的鞍点分布近似
- R tsboot 时间序列的引导
- R logit 比例的逻辑
- R EEF.profile 经验可能性
- R tau Tau 粒子衰变模式
- R gravity 重力加速度
- R boot 引导重采样
- R plot.boot Bootstrap 模拟的输出图
- R boot.ci 非参数引导置信区间
- R tilt.boot 非参数倾斜引导
- R envelope 曲线的置信区间
- R bigcity 美国城市人口
- R co.transfer 一氧化碳转移
- R imp.weights 重要性采样权重
- R acme 每月超额返回
- R glm.diag.plots 广义线性模型的诊断图
- R survival 辐射剂量后大鼠的存活率
- R norm.ci 正态近似置信区间
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Jackknife-after-Bootstrap Plots。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。