Having a ggpairs
function, how would one limit range of lower facets to e.g. 0.5 for x and y?
library(GGally)
xy <- data.frame(matrix(runif(4 * 1000), ncol = 4))
ggpairs(xy)
Having a ggpairs
function, how would one limit range of lower facets to e.g. 0.5 for x and y?
library(GGally)
xy <- data.frame(matrix(runif(4 * 1000), ncol = 4))
ggpairs(xy)
You need to define a function which plots (one facet). You can go wild with
ggplot
in here. See this similar question.