アロハ、
次の棒グラフの場合:
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"
助言がありますか?