我在ggplot2(ggplot2_0.8.8)中使用plotmatrix
函数,并希望覆盖从我的数据框中显示的列名,例如。
plotmatrix(mtcars) + opts(strip.text.x = theme_text(size=20))
我可以使用opts更改strip.text.x和strip.text.y的属性,但是我可以在哪里更改文本本身,例如我想用“Miles / Gallon”代替“mpg”,这会导致作为colname的问题。我假设labeller
中可能有类似facet_grid
选项的内容,它允许我用现有的合欢名替换任意文本?
答案 0 :(得分:0)
重命名列。
x <- mtcars ## just because I like x.
colnames(x)[1] <- "Miles/Gallon" ## rename all by dropping [1] and using c(...)
plotmatrix(x) + opts(strip.text.x = theme_text(size=20))