You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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)
;The text was updated successfully, but these errors were encountered: