如何查看密度图中的内核使用的带宽以及如何指定要使用的带宽?我试过
ggplot(mtcars,aes(mpg))+geom_density(bw=1)
没有运气。
stat_geom
利用adjust
参数将乘数应用于 ggplot 计算的最佳带宽,请参阅density()
. 尝试:
ggplot(mtcars,aes(mpg))+geom_density() + stat_density(adjust = 2)
我收集以确定计算出的最佳带宽 - 基于“平滑内核的标准偏差” - 您需要询问 Venables, WN 和 Ripley, BD (2002) Modern Applied Statistics with S. New York: Springer。