R語言
ppoints
位於 stats
包(package)。 說明
生成概率點序列 (1:m - a)/(m + (1-a)-a)
,其中 m
是 n
(如果是 length(n)==1
)或 length(n)
。
用法
ppoints(n, a = if(n <= 10) 3/8 else 1/2)
參數
n |
生成的點數或觀察向量。 |
a |
要使用的偏移分數;通常在 中。 |
細節
如果 p + rev(p) == 1
。 ,則結果值在 範圍內(不包括邊界)。在任何情況下,生成的序列在 中都是對稱的,即
ppoints()
在 qqplot
和 qqnorm
中使用來生成用於評估逆分布的概率集。
a
的選擇遵循 Becker 等人 (1988) 中同名函數的文檔,並且似乎受到 Blom (1958) 關於期望正態順序統計的近似值的結果的啟發(另請參閱 quantile
)。
將a
分別取為1/2、0、1、1/3和3/8,可以獲得連續樣本分位數類型5至9(參見quantile
)的概率點。
例子
ppoints(4) # the same as ppoints(1:4)
ppoints(10)
ppoints(10, a = 1/2)
## Visualize including the fractions :
require(graphics)
p.ppoints <- function(n, ..., add = FALSE, col = par("col")) {
pn <- ppoints(n, ...)
if(add)
points(pn, pn, col = col)
else {
tit <- match.call(); tit[[1]] <- quote(ppoints)
plot(pn,pn, main = deparse(tit), col=col,
xlim = 0:1, ylim = 0:1, xaxs = "i", yaxs = "i")
abline(0, 1, col = adjustcolor(1, 1/4), lty = 3)
}
if(!add && requireNamespace("MASS", quietly = TRUE))
text(pn, pn, as.character(MASS::fractions(pn)),
adj = c(0,0)-1/4, cex = 3/4, xpd = NA, col=col)
abline(h = pn, v = pn, col = adjustcolor(col, 1/2), lty = 2, lwd = 1/2)
}
p.ppoints(4)
p.ppoints(10)
p.ppoints(10, a = 1/2)
p.ppoints(21)
p.ppoints(8) ; p.ppoints(8, a = 1/2, add=TRUE, col="tomato")
參考
Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) The New S Language. Wadsworth & Brooks/Cole.
Blom, G. (1958) Statistical Estimates and Transformed Beta Variables. Wiley
也可以看看
相關用法
- R ppr 投影尋蹤回歸
- R plot.stepfun 繪製階躍函數
- R pairwise.t.test 成對 t 檢驗
- R predict.smooth.spline 通過平滑樣條擬合進行預測
- R plot.profile.nls 繪製 profile.nls 對象
- R predict 模型預測
- R plot.isoreg isoreg 對象的繪圖方法
- R profile.nls 分析 nls 對象的方法
- R plot.HoltWinters HoltWinters 對象的繪圖函數
- R predict.HoltWinters 擬合 Holt-Winters 模型的預測函數
- R poly 計算正交多項式
- R proj 模型預測
- R predict.loess 預測黃土曲線或表麵
- R power.t.test 一個和兩個樣本 t 檢驗的功效計算
- R power.prop.test 比例二樣本檢驗的功效計算
- R preplot 繪圖對象的預計算
- R plot.ts 繪製時間序列對象
- R prcomp 主成分分析
- R printCoefmat 打印係數矩陣
- R plot.density 核密度估計的繪圖方法
- R profile 分析模型的通用函數
- R power.anova.test 方差檢驗平衡單向分析的功效計算
- R prop.test 等比例或給定比例檢驗
- R profile.glm 分析 glm 對象的方法
- R pairwise.prop.test 比例的成對比較
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Ordinates for Probability Plotting。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。