gpt4 book ai didi

r - ggplot2,使用主题后 Axis 未显示(axis.line = element_line())

转载 作者:行者123 更新时间:2023-12-03 10:33:55 36 4
gpt4 key购买 nike

我正在尝试使用ggplot2包绘制以下图形,但是以某种方式不会显示轴。刻度线在那里,而不仅仅是轴线。我使用了theme(axis.line=element_line())函数,但无法正常工作。

这是我的代码:

library(ggplot2)

ggplot(data = soepl_randsub, aes(x = year, y =satisf_org, group = id)) +
geom_point() + geom_line() +ylab("Current Life Satisfaction") +theme_bw() +
theme(plot.background = element_blank(),
panel.grid.major = element_blank(),
panel.grid.minor = element_blank() ) +
theme(panel.border= element_blank()) +
theme(axis.line = element_line(color="black", size = "2"))

我不确定出了什么问题。这是图表。

enter image description here

最佳答案

该错误已在ggplot2 v2.2.0中修复。不再需要单独指定轴线。

我认为这是ggplot2 v2.1.0中的错误。 (请参阅this bug reportthis one。)一种解决方法是分别设置x轴和y轴线。

  library(ggplot2)

ggplot(data = mpg, aes(x = hwy, y = displ)) +
geom_point() +
theme_bw() +
theme(plot.background = element_blank(),
panel.grid.major = element_blank(),
panel.grid.minor = element_blank() )+
theme(panel.border= element_blank())+
theme(axis.line.x = element_line(color="black", size = 2),
axis.line.y = element_line(color="black", size = 2))

关于r - ggplot2,使用主题后 Axis 未显示(axis.line = element_line()),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35833307/

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