gpt4 book ai didi

r - 用 R (ggplot) 绘制二维箱线图

转载 作者:行者123 更新时间:2023-12-04 21:39:33 30 4
gpt4 key购买 nike

我已经用 2 个参数对数据进行了分组:

set.seed(1)
dat <- data.frame( xx=sample(10,9),
yy=sample(20,9),
group=c('A','B', 'C') )

我可以为每个维度绘制箱线图:
ggplot(dat, aes(x=group, y=yy, fill=group)) + geom_boxplot() 
ggplot(dat, aes(x=group, y=xx, fill=group)) + geom_boxplot() + coord_flip()



现在我将结合这些并绘制反射(reflect)两个变量数据的箱线图,如下所示:

(此图像是在图形编辑器中手动制作的)

有没有什么简单的方法可以绘制这种箱线图?

最佳答案

这不是很好的表示方式。这可能非常令人困惑。通常这些数据是这样表示的。

datPlot <- melt(dat)
ggplot(datPlot, aes(x=group, y=value, fill=variable)) + geom_boxplot()

enter image description here

或者如果两个变量的范围非常不同,您可以尝试分面
ggplot(datPlot, aes(x=group, y=value, fill=group)) + geom_boxplot()
+facet_wrap(~variable,scale="free_y")

enter image description here

或这个
ggplot(dat, aes(x=xx, y=yy, color=group)) + geom_point(size=3) 

enter image description here

关于r - 用 R (ggplot) 绘制二维箱线图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30072525/

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