Diagonal Panel Functions for Table Pairs Plot
Diagonal panel functions for pairs.table
.
pairs_barplot(gp_bars = NULL, gp_vartext = gpar(fontsize = 17), gp_leveltext = gpar(), gp_axis = gpar(), just_leveltext = c("center", "bottom"), just_vartext = c("center", "top"), rot = 0, abbreviate = FALSE, check_overlap = TRUE, fill = "grey", var_offset = unit(1, "npc"), ...) pairs_text(dimnames = TRUE, gp_vartext = gpar(fontsize = 17), gp_leveltext = gpar(), gp_border = gpar(), ...) pairs_diagonal_text(varnames = TRUE, gp_vartext = gpar(fontsize = 17, fontface = "bold"), gp_leveltext = gpar(), gp_border = gpar(), pos = c("right","top"), distribute = c("equal","margin"), rot = 0, ...) pairs_diagonal_mosaic(split_vertical = TRUE, margins = unit(0, "lines"), offset_labels = -0.4, offset_varnames = 0, gp = NULL, fill = "grey", labeling = labeling_values, alternate_labels = TRUE, ...)
dimnames |
vector of logicals indicating whether the factor
levels should be displayed (only used for |
varnames |
vector of logicals indicating whether the variable
names should be displayed (only used for |
gp_bars |
object of class |
gp_vartext |
object of class |
gp_leveltext |
object of class |
gp_axis |
object of class |
gp_border |
object of class |
gp |
object of class |
fill |
color vector or palette function used for the fill colors
of bars (for |
labeling |
labeling function, passed to |
alternate_labels |
should labels alternate top/bottom? |
just_leveltext, just_vartext |
character string indicating the justification for variable names and levels. |
pos |
character string of length 2 controlling the
horizontal and vertical position of the variable names
(only used for |
rot |
rotation angle for the variable levels. |
distribute |
character string indicating whether levels should be
distributed equally or according to the margins
(only used for |
abbreviate |
integer or logical indicating
the number of characters the labels should be abbreviated
to. |
check_overlap |
If |
split_vertical |
vector of logicals of length k, where
k is the number of margins of |
margins |
either an object of class |
offset_labels, offset_varnames |
numeric vector of length 4 indicating the offset of the labels (variable names) for each of the four sides of the plot. |
var_offset |
object of class |
... |
other parameters passed to the underlying graphics functions. |
In the diagonal cells, the pairsplot visualizes statistics or
information for each dimension (that is: the single factors) alone.
pairs_text
displays the factor's name, and optionally
also the factor levels. pairs_barplot
produces a bar plot
of the corresponding factor, along with the factor's name.
A function with one argument: the marginal table for the corresponding dimension.
David Meyer David.Meyer@R-project.org
data("UCBAdmissions") pairs(UCBAdmissions) # pairs_barplot is default pairs(UCBAdmissions, diag_panel = pairs_text) pairs(UCBAdmissions, diag_panel = pairs_diagonal_text) pairs(Titanic, diag_panel = pairs_diagonal_text) pairs(Titanic, diag_panel = pairs_diagonal_text(distribute = "margin")) pairs(Titanic, diag_panel = pairs_diagonal_text(distribute = "margin", rot = 45))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.