标签: r ggplot2
我试图绘制一些有关物种数量的数据。我已经制作了附图,但我想知道如何将物种名称改为斜体?我的图表:
以下是我目前使用的代码:
ggplot(data=counts.df, aes(x=species, y=counts)) + geom_boxplot() + labs(x = "Species") + labs(y = "Mean Frequency") + coord_flip()
答案 0 :(得分:0)
使用ggplot2我们可以使用theme沿y轴修改轴标题:
ggplot2
theme
ggplot(iris, aes(Sepal.Length, Sepal.Width)) + geom_point() + theme(axis.title.y = element_text(face = "italic"))
如果您希望两个轴的标题都用斜体,我们可以执行以下操作:
ggplot(iris, aes(Sepal.Length, Sepal.Width)) + geom_point() + theme(axis.title = element_text(face = "italic"))