當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R bandwidth.nrd 通過正態參考分布得到的密度()帶寬


R語言 bandwidth.nrd 位於 MASS 包(package)。

說明

用於選擇高斯核密度估計器帶寬的得到良好支持的經驗法則。

用法

bandwidth.nrd(x)

參數

x

數據向量。

適合 densitywidth 參數的帶寬。

例子

# The function is currently defined as
function(x)
{
    r <- quantile(x, c(0.25, 0.75))
    h <- (r[2] - r[1])/1.34
    4 * 1.06 * min(sqrt(var(x)), h) * length(x)^(-1/5)
}

參考

Venables, W. N. and Ripley, B. D. (2002) Modern Applied Statistics with S. Springer, equation (5.5) on page 130.

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Bandwidth for density() via Normal Reference Distribution。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。