gpt4 book ai didi

r - 如何在 R 中找到箱线图的上限和下限?

转载 作者:行者123 更新时间:2023-12-05 02:12:44 26 4
gpt4 key购买 nike

enter image description here我在 R 中用某些参数构建了一个箱线图,但我不知道帮助我了解框的上限和下限的代码。如果有人可以提供帮助,我将不胜感激。我知道数量只是不知道上限和下限。

最佳答案

您可以检查箱线图的 stats。考虑以下示例:

set.seed(5)
x = rnorm(20)

my.boxplot = boxplot(x)

这将绘制以下箱线图

sample box plot

为了找到上下须线和四分位数的值,我们可以检查箱形图对象的 stats:

> my.boxplot$stats
[,1]
[1,] -2.1839668 # Lower whisker
[2,] -0.8213175 # Q1
[3,] -0.3789700 # Q2 (median)
[4,] 0.1041255 # Q3
[5,] 1.3843593 # Upper whisker

# Equvalently:
boxplot(x)$stats
[,1]
[1,] -2.1839668 # Lower whisker
[2,] -0.8213175 # Q1
[3,] -0.3789700 # Q2 (median)
[4,] 0.1041255 # Q3
[5,] 1.3843593 # Upper whisker

要获取离群值,您可以使用以下方法:

> my.boxplot$out
[1] 1.711441 # This example has only one outlier

# or
> boxplot(x)$out
[1] 1.711441 # This example has only one outlier

关于r - 如何在 R 中找到箱线图的上限和下限?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55502810/

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