更新:
GGAlly 再次更新,这个答案中的 hack也不再起作用,但最后有一个非 hack 解决方案:给定
scales <- scale_colour_brewer(type = 'qual') %+% scale_fill_brewer(type = 'qual')
你可以做到(以一种有希望的面向未来的方式)
for (row in seq_len(ps$nrow))
for (col in seq_len(ps$ncol))
ps[row, col] <- ps[row, col] + scales
老路
另一个答案中的破解不再起作用,所以让我们破解一个新的!
对象的内部结构ggpairs
是数据集和字符串列表:
> dta <- data.frame(a=1:6, b=7:12, c=c('f', 'g'))
> ps <- ggpairs(dta, 1:2, colour = 'c')
> str(ps)
List of 10
$ data :'data.frame': 2 obs. of 3 variables:
..$ a: int [1:2] 1 2
..$ b: int [1:2] 3 4
..$ c: int [1:2] 5 6
$ columns : int [1:3] 1 2 3
$ plots :List of 9
..$ : chr "ggally_densityDiag(ggally_data, ggplot2::aes(x = a, colour = c))"
..$ : chr "ggally_cor(ggally_data, ggplot2::aes(x = b, y = a, colour = c))"
[...]
$ gg : NULL
- attr(*, "class")= chr [1:2] "gg" "ggpairs"
> ps
为了修改绘图,需要修改绘图对象中的各个字符串以包含附加命令。为此,我们使用deparse(substitute(argument))
获取包含用户传递的代码的字符串,并将其附加到每个绘图调用:
add_to_plots <- function(pairs, modification) {
str <- deparse(substitute(modification))
pairs$plots <- lapply(pairs$plots, function(s) paste(s, '+', str))
pairs
}
> add_to_plots(ps, scale_colour_brewer(type = 'qual'))