1

plotmatrix在 ggplot2 (ggplot2_0.8.8) 中使用该函数,并希望覆盖从我的数据框中显示的列名,例如

plotmatrix(mtcars) + opts(strip.text.x = theme_text(size=20))

我可以使用 opts 更改 strip.text.x 和 strip.text.y 的属性,但是我可以在哪里更改文本本身,例如,我希望将“mpg”替换为“Miles / Gallon”,这会导致作为 colname 的问题。我认为可能有类似的labeller选项facet_grid允许我用任意文本替换现有的 colnames?

4

1 回答 1

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))
于 2010-09-29T19:52:08.780 回答