如何在ggplot

时间:2018-03-08 13:40:58

标签: r ggplot2

我试图绘制一些有关物种数量的数据。我已经制作了附图,但我想知道如何将物种名称改为斜体?我的图表:

enter image description here

以下是我目前使用的代码:

ggplot(data=counts.df, aes(x=species, y=counts)) + 
   geom_boxplot() +
   labs(x = "Species") +
   labs(y = "Mean Frequency") +
   coord_flip()

1 个答案:

答案 0 :(得分:0)

使用ggplot2我们可以使用theme沿y轴修改轴标题:

ggplot(iris, aes(Sepal.Length, Sepal.Width)) +
  geom_point() +
  theme(axis.title.y = element_text(face = "italic"))

enter image description here

如果您希望两个轴的标题都用斜体,我们可以执行以下操作:

ggplot(iris, aes(Sepal.Length, Sepal.Width)) +
  geom_point() +
  theme(axis.title = element_text(face = "italic"))

enter image description here