inst/examples/R/data/graphics/scatterplot_matrix/example_splom.R

library("MASS")
pairs(~rm+lstat+medv, data=Boston, cex=0.5)

# lattice: makes no sense

# ggplot2
library("ggplot2")
library("GGally")
ggpairs(Boston, columns=c(6,13,14))
sigbertklinke/shinyExample documentation built on May 26, 2019, 4:32 a.m.