Build a Biplot
viz_biplot(
coord_row,
coord_col,
...,
rows = TRUE,
columns = TRUE,
labels = c("rows", "columns", "individuals", "variables"),
xlim = NULL,
ylim = NULL,
main = NULL,
sub = NULL,
xlab = NULL,
ylab = NULL,
axes = TRUE,
frame.plot = axes,
ann = graphics::par("ann"),
panel.first = NULL,
panel.last = NULL,
legend = list(x = "topleft")
)
A data.frame
returned by prepare_plot()
.
A data.frame
returned by prepare_plot()
.
A logical
scalar: should the rows be drawn?
A logical
scalar: should the columns be drawn?
A character
vector specifying whether
"rows
"/"individuals
" and/or "columns
"/"variables
" names must be
drawn. Any unambiguous substring can be given.
A length-two numeric
vector giving the x limits of the plot.
The default value, NULL
, indicates that the range of the
finite values to be plotted should be used.
A length-two numeric
vector giving the y limits of the plot.
The default value, NULL
, indicates that the range of the
finite values to be plotted should be used.
A character
string giving a main title for the plot.
A character
string giving a subtitle for the plot.
A character
vector giving the x and y axis labels.
A logical
scalar: should axes be drawn on the plot?
A logical
scalar: should a box be drawn around the
plot?
A logical
scalar: should the default annotation (title and x
and y axis labels) appear on the plot?
An expression
to be evaluated after the plot axes are
set up but before any plotting takes place. This can be useful for drawing
background grids.
An expression
to be evaluated after plotting has taken
place but before the axes, title and box are added.
A list
of additional arguments to be passed to
graphics::legend()
; names of the list are used as argument names.
If NULL
, no legend is displayed.
N. Frerebeau