
Several panel plots that can be used with pairs()
.
panel_boxplot(x, col = par("col"), box.col = "cornsilk", ...)panel.boxplot(x, col = par("col"), box.col = "cornsilk", ...)
panel_density(x, adjust = 1, rug = TRUE, col = par("col"),
lwd = par("lwd"), line.col = col, line.lwd = lwd, ...)
panel.density(x, adjust = 1, rug = TRUE, col = par("col"),
lwd = par("lwd"), line.col = col, line.lwd = lwd, ...)
panel_hist(x, breaks = "Sturges", hist.col = "cornsilk",
hist.border = NULL, hist.density = NULL, hist.angle = 45, ...)
panel.hist(x, breaks = "Sturges", hist.col = "cornsilk",
hist.border = NULL, hist.density = NULL, hist.angle = 45, ...)
panel_qqnorm(x, pch = par("pch"), col = par("col"), bg = par("bg"),
cex = par("cex"), lwd = par("lwd"), qq.pch = pch, qq.col = col,
qq.bg = bg, qq.cex = cex, qqline.col = qq.col, qqline.lwd = lwd, ...)
panel.qqnorm(x, pch = par("pch"), col = par("col"), bg = par("bg"),
cex = par("cex"), lwd = par("lwd"), qq.pch = pch, qq.col = col,
qq.bg = bg, qq.cex = cex, qqline.col = qq.col, qqline.lwd = lwd, ...)
A numeric vector.
The color of the points.
The filling color of the boxplots.
Further arguments to plot functions, or functions that construct
items, like density()
, depending on the context.
The bandwidth adjustment factor, see density()
.
Do we add a rug representation (1-d plot) of the points too?
The line width.
The color of the line.
The width of the line.
The number of breaks, the name of a break algorithm, a vector
of breakpoints, or any other acceptable value for breaks =
argument of
hist()
.
The filling color for the histograms.
The border color for the histograms.
The density for filling lines in the histograms.
The angle for filling lines in the histograms.
The symbol used for the points.
The background color for symbol used for the points.
The expansion factor used for the points.
The symbol used to plot points in the QQ-plots.
The color of the symbol used to plot points in the QQ-plots.
The background color of the symbol used to plot points in the QQ-plots.
The expansion factor for points in the QQ-plots.
The color for the QQ-plot lines.
The width for the QQ-plot lines.
These functions return nothing and are used for their side effect of plotting in panels of composite plots.
Panel functions panel_boxplot()
, panel_density()
, panel_hist()
and panel_qqnorm()
should be used only to plot univariate data on the
diagonals of pair plots (or scatterplot matrix).
# NOT RUN {
# Example of scatterplot matrices with custom plots on the diagonal
# Boxplots
pairs(trees, panel = panel_smooth, diag.panel = panel_boxplot)
pairs(trees, diag.panel = panel_boxplot, box.col = "gray")
# Densities
pairs(trees, panel = panel_smooth, diag.panel = panel_density)
pairs(trees, diag.panel = panel_density, line.col = "red", adjust = 0.5)
# Histograms
pairs(trees, panel = panel_smooth, diag.panel = panel_hist)
pairs(trees, diag.panel = panel_hist, hist.col = "gray", breaks = "Scott")
# QQ-plots against Normal theoretical distribution
pairs(trees, panel = panel_smooth, diag.panel = panel_qqnorm)
pairs(trees, diag.panel = panel_qqnorm, qqline.col = 2, qq.cex = .5, qq.pch = 3)
# }
Run the code above in your browser using DataLab