Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 R 中的箱线图函数为三个不同组的起始值制作了箱线图,如下所示:
boxplot(onset ~ group, data = pulse.dat, range = 0, col = "lightblue")
但是,我想看看没有范围的数据看起来如何,所以我想创建一个没有胡须的箱线图。我也不介意任何类型的图表,只要它显示 3 组中每一个的中位数、第 25 和第 75 四分位数。
有谁知道我如何在 R 中做到这一点?
在箱线图解析下...
d <- rnorm(1:100, 100, 10) boxplot(d, whisklty = 0, staplelty = 0)
whisklty摆脱线条或胡须
whisklty
staplelty摆脱末端或订书钉
staplelty