base::matrix
Plot base::matrix
# S3 method for matrix
autoplot(
object,
original = NULL,
geom = "tile",
colour = NULL,
size = NULL,
alpha = NULL,
fill = "#0000FF",
shape = NULL,
label = FALSE,
label.label = "rownames",
label.colour = colour,
label.alpha = NULL,
label.size = NULL,
label.angle = NULL,
label.family = NULL,
label.fontface = NULL,
label.lineheight = NULL,
label.hjust = NULL,
label.vjust = NULL,
label.repel = FALSE,
scale = NULL,
xlim = c(NA, NA),
ylim = c(NA, NA),
log = "",
main = NULL,
xlab = NULL,
ylab = NULL,
asp = NULL,
...
)
ggplot
base::matrix
instance
Combined to data by column if provided. Intended to be used for stat functions which returns not containing original data.
Geometric string for plotting. 'tile' or 'point'.
colour for points ('point' only)
point size
alpha
fill colour. Ignored if scale keyword is passed. ('tile' Only)
point shape
Logical value whether to display labels
Column name used for label text
Colour for text labels
Alpha for text labels
Size for text labels
Angle for text labels
Font family for text labels
Fontface for text labels
Lineheight for text labels
Horizontal adjustment for text labels
Vertical adjustment for text labels
Logical flag indicating whether to use ggrepel
, enabling this may take some time for plotting
(Deprecated) ggplot2::scale
instance to plot. ('tile' Only)
limits for x axis
limits for y axis
which variables to log transform ("x", "y", or "xy")
character vector or expression for plot title
character vector or expression for x axis label
character vector or expression for y axis label
the y/x aspect ratio
other arguments passed to methods
autoplot(matrix(rnorm(20), nc = 5))
autoplot(matrix(rnorm(20), nc = 5), fill = 'red')
autoplot(matrix(rnorm(20), nc = 2), geom = 'point')
Run the code above in your browser using DataLab