gpt4 book ai didi

r - 如何在R中的boxplot中删除异常值?

转载 作者:行者123 更新时间:2023-12-03 11:07:56 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:




8年前关闭。




Possible Duplicate:
Changing the outlier rule in a boxplot



我需要使用箱线图来可视化我的结果。
x<-rnorm(10000)
boxplot(x,horizontal=TRUE,axes=FALSE)

如何在可视化过程中过滤异常值?

(1) 这样我就可以在屏幕上显示完整图像而不会出现丑陋的异常值。

http://postimage.org/image/szzbez0h1/a610666d/

(2) 有没有办法显示一定范围内的异常值?
http://postimage.org/image/np28oee0b/8251d102/

问候

最佳答案

?boxplot为您提供所需的所有帮助。

 outline: if ‘outline’ is not true, the outliers are not drawn (as
points whereas S+ uses lines).

boxplot(x,horizontal=TRUE,axes=FALSE,outline=FALSE)

为了扩展 mustache 的范围并抑制此范围内的异常值:
   range: this determines how far the plot whiskers extend out from the
box. If ‘range’ is positive, the whiskers extend to the most
extreme data point which is no more than ‘range’ times the
interquartile range from the box. A value of zero causes the
whiskers to extend to the data extremes.

# change the value of range to change the whisker length
boxplot(x,horizontal=TRUE,axes=FALSE,range=2)

关于r - 如何在R中的boxplot中删除异常值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14207739/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com