Internal plotting function for univariate plots
.plot_univariate_importance(
x,
color_by,
facet_by,
facet_wrap_cols,
ggtheme,
show_cluster,
discrete_palette,
gradient_palette,
x_label,
y_label,
legend_label,
plot_title,
plot_sub_title,
caption,
x_range,
x_breaks,
significance_level_shown
)
ggplot plot object.
(optional) Variables used to determine fill colour of plot
objects. The variables cannot overlap with those provided to the split_by
argument, but may overlap with other arguments. See details for available
variables.
(optional) Variables used to determine how and if facets of
each figure appear. In case the facet_wrap_cols
argument is NULL
, the
first variable is used to define columns, and the remaing variables are
used to define rows of facets. The variables cannot overlap with those
provided to the split_by
argument, but may overlap with other arguments.
See details for available variables.
(optional) Number of columns to generate when facet wrapping. If NULL, a facet grid is produced instead.
(optional) ggplot
theme to use for plotting.
(optional) Show which features were clustered together.
(optional) Palette used to fill the bars in case a
non-singular variable was provided to the color_by
argument.
(optional) Palette to use for filling the bars in
case the color_by
argument is not set. The bars are then coloured
according to their importance. By default, no gradient is used, and the
bars are not filled according to importance. Use NULL
to fill the bars
using the default palette in familiar
.
(optional) Label to provide to the x-axis. If NULL, no label is shown.
(optional) Label to provide to the y-axis. If NULL, no label is shown.
(optional) Label to provide to the legend. If NULL, the legend will not have a name.
(optional) Label to provide as figure title. If NULL, no title is shown.
(optional) Label to provide as figure subtitle. If NULL, no subtitle is shown.
(optional) Label to provide as figure caption. If NULL, no caption is shown.
(optional) Value range for the x-axis.
(optional) Break points on the x-axis of the plot.
Position(s) to draw vertical lines indicating a significance level, e.g. 0.05. Can be NULL to not draw anything.
plot_univariate_importance
for the user interface.