如何在GGPLOT theme_classic()中启用x轴和y轴线

时间:2016-07-11 14:08:20

标签: r plot ggplot2

使用此代码:

library(ggplot2)
ToothGrowth$dose <- as.factor(ToothGrowth$dose)
p <- ggplot(ToothGrowth, aes(x=dose, y=len, color=dose, shape=dose)) + 
  geom_jitter(position=position_jitter(0.2))+
  labs(title="Plot of length  by dose",x="Dose (mg)", y = "Length")
p + theme_classic()

我希望得到这样的图像:

enter image description here

但是我怎么会这样做呢:

enter image description here

注意缺少的x轴是y轴线。 我该如何启用它?

这是theme_classic()具体问题。

1 个答案:

答案 0 :(得分:2)

以下是此GitHub issue

的解决方案
p + theme_classic() +
    theme(axis.line.x = element_line(colour = 'black', size=0.5, linetype='solid'),
          axis.line.y = element_line(colour = 'black', size=0.5, linetype='solid'))