R語言
lines.saddle.distn
位於 boot
包(package)。 說明
此函數將對應於鞍點密度或分布函數近似值的線添加到當前繪圖中。
用法
## S3 method for class 'saddle.distn'
lines(x, dens = TRUE, h = function(u) u, J = function(u) 1,
npts = 50, lty = 1, ...)
參數
x |
|
dens |
一個邏輯變量,指示是否應繪製鞍點密度( |
h |
所需的變量的任何轉換。它的第一個參數必須是執行近似的值,並且該函數必須進行矢量化。 |
J |
當 |
npts |
用於繪圖的點數。這些點將在用於查找鞍點近似的點範圍內均勻分布。 |
lty |
要使用的線類型。 |
... |
|
細節
該函數使用smooth.spline
生成鞍點曲線。當dens=TRUE
時,樣條曲線采用對數標度,而當dens=FALSE
時,樣條曲線采用概率標度。
值
sad.d
隱形返回。
副作用
一條線將添加到當前繪圖中。
例子
# In this example we show how a plot such as that in Figure 9.9 of
# Davison and Hinkley (1997) may be produced. Note the large number of
# bootstrap replicates required in this example.
expdata <- rexp(12)
vfun <- function(d, i) {
n <- length(d)
(n-1)/n*var(d[i])
}
exp.boot <- boot(expdata,vfun, R = 9999)
exp.L <- (expdata - mean(expdata))^2 - exp.boot$t0
exp.tL <- linear.approx(exp.boot, L = exp.L)
hist(exp.tL, nclass = 50, probability = TRUE)
exp.t0 <- c(0, sqrt(var(exp.boot$t)))
exp.sp <- saddle.distn(A = exp.L/12,wdist = "m", t0 = exp.t0)
# The saddlepoint approximation in this case is to the density of
# t-t0 and so t0 must be added for the plot.
lines(exp.sp, h = function(u, t0) u+t0, J = function(u, t0) 1,
t0 = exp.boot$t0)
參考
Davison, A.C. and Hinkley, D.V. (1997) Bootstrap Methods and Their Application. Cambridge University Press.
也可以看看
相關用法
- R linear.approx Bootstrap 重複的線性近似
- R logit 比例的邏輯
- R poisons 動物生存時間
- R ducks 雜交鴨的行為和羽毛特征
- R nodal 前列腺癌的淋巴結受累
- R cloth 布料瑕疵數量
- R polar 新喀裏多尼亞紅土的極點位置
- R capability 模擬製造過程數據
- R beaver 海狸體溫數據
- R saddle.distn Bootstrap 統計的鞍點分布近似
- R tsboot 時間序列的引導
- 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-devel大神的英文原創作品 Add a Saddlepoint Approximation to a Plot。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。