bandwidth.nrd(MASS)
bandwidth.nrd()所属R语言包:MASS
Bandwidth for density() via Normal Reference Distribution
带宽通过正常参考分布的密度()
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A well-supported rule-of-thumb for choosing the bandwidth of a Gaussian kernel density estimator.
支持良好的法治经验,选择高斯核密度估计的带宽。
用法----------Usage----------
bandwidth.nrd(x)
参数----------Arguments----------
参数:x
A data vector. </table>
一个数据向量。 </ TABLE>
值----------Value----------
A bandwidth on a scale suitable for the width argument of density.
一个规模为widthdensity参数适合的带宽。
参考文献----------References----------
Modern Applied Statistics with S. Springer, equation (5.5) on page 130.
举例----------Examples----------
# 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)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|