create.scatterplot, create.boxplot have arguments strip.cex, strip.col, strip.fontface to change the font when making multiple panels using the | operator.
However, these arguments are missing from create.violinplot.
In the meantime, a temporary solution is to assign the plot to an object, e.g. violin <- create.violinplot(...), then you can manually add text parameters. For example:
suppressPackageStartupMessages(library(BoutrosLab.plotting.general));
data(mtcars);
violin <- create.violinplot(
formula = mpg ~ vs | am,
data = mtcars
);
violin;
create.scatterplot, create.boxplot
have argumentsstrip.cex, strip.col, strip.fontface
to change the font when making multiple panels using the|
operator.However, these arguments are missing from
create.violinplot
.In the meantime, a temporary solution is to assign the plot to an object, e.g.
violin <- create.violinplot(...)
, then you can manually add text parameters. For example:Created on 2024-07-18 with reprex v2.0.2
EDIT: also missing the
layout
argument for specifying # cols/rows. In the meantime, can manually add asviolin$layout <- c(n.cols, n.rows)
;