gpt4 book ai didi

r - 更改厚度中线 geom_boxplot()

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

我想对 geom_boxplot() 做一些修改。因为我的箱线图有时真的很“小”(参见图中的黄色和绿色分支 here),我想更加突出中位数。那么是否可以调整中线的粗细?

最佳答案

这个解决方案在文档中并不明显,但幸运的是不需要我们编辑 ggplot2 的源代码。 .挖通源码后ggplot2我发现中线的粗细是由fatten控制的范围。默认 fatten有两个值:

require(reshape)
require(ggplot2)
cars_melt = melt(cars)

ggplot(aes(x = variable, y = value), data = cars_melt) +
geom_boxplot(fatten = 2)

enter image description here

但是如果我们将值增加到例如 4,中线会变粗。
ggplot(aes(x = variable, y = value), data = cars_melt) + 
geom_boxplot(fatten = 4)

enter image description here

关于r - 更改厚度中线 geom_boxplot(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12475865/

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