gpt4 book ai didi

r - 在马赛克图下方显示轴标签

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

我正在尝试更改将绘图顶部的 x 值显示到绘图底部的默认设置。

这是一个小例子:

Betta <- c(1,12,23,20)
dim(Betta) <- c(2,2)
dimnames(Betta) <- list(Temperature = c("28", "25"), Flare = c("Yes", "No"))
mosaicplot(x = Betta, main = "Title")

enter image description here

为了清楚起见,我试图将温度值 28 和 25 移到图表的底部,就在 x 轴“温度”的上方。

感谢您的帮助!

最佳答案

您可以在下面的示例中使用包 ggmosaic

df <- as.data.frame(as.table(Betta)) # first, transform the contingency table into a data.frame
library(ggmosaic)
ggplot(data=df)+
geom_mosaic(aes(weight=Freq,x=product(Temperature), fill=Flare))+
labs(x="Temperature")

enter image description here

关于r - 在马赛克图下方显示轴标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43816313/

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