阿罗哈

对于以下条形图:

x <- ggplot(foo, aes(x=variety, y=percent)) + geom_bar()


以下是我所有x轴文本的斜体:

x + opts(axis.text.x=theme_text(face='italic'))


但是,我只想用斜体表示物种名称,而不是对照。

levels(foo$variety)
"control"    "species1" "species2"     "species3"


有什么建议?

最佳答案

试试这个例子:

library(ggplot2)

ggplot(CO2, aes(y=uptake,x=Type, group=Type))+
  geom_point()+
  scale_x_discrete("Location", labels=expression(Quebec, italic(Mississippi)))

关于r - 部分斜体,axis.text.x,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11769880/

10-12 20:35