gpt4 book ai didi

删除ggplot中所有x轴标签

转载 作者:行者123 更新时间:2023-12-01 22:39:18 25 4
gpt4 key购买 nike

我需要删除 x 轴上的所有内容,包括标签和刻度线,以便仅标记 y 轴。我该怎么做?

在下图中,我希望“清晰度”,并删除所有刻度线和标签,以便只有轴线在那里。

ggplot 示例

data(diamonds)
ggplot(data = diamonds, mapping = aes(x = clarity)) + geom_bar(aes(fill = cut))

ggplot 图表:

enter image description here

所需图表:

enter image description here

最佳答案

您必须在需要删除的 theme() 元素中设置为 element_blank()

ggplot(data = diamonds, mapping = aes(x = clarity)) + geom_bar(aes(fill = cut))+
theme(axis.title.x=element_blank(),
axis.text.x=element_blank(),
axis.ticks.x=element_blank())

关于删除ggplot中所有x轴标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35090883/

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