ggplot2 plotmatrix - 更改文本标签

时间:2010-09-29 19:20:37

标签: r plot ggplot2 lattice

我在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选项的内容,它允许我用现有的合欢名替换任意文本?

1 个答案:

答案 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))