I would like to change the color palette for the GGally function ggpairs. When I attempt to add ggplot commands to the ggplot returned using getPlot, the colors do not change.
my_pair_plot = ggpairs(dataset, color="var1")
getPlot(my_pair_plot,2,1) + scale_fill_brewer(palette = "Set2")
Attempting to put ggplot commands directly on the ggpairs function results in an error.
ggpairs(dataset, color="var1") + scale_fill_brewer(palette = "Set2")