- ...
Provided to require argument naming, support trailing commas etc.
- colour
For most geoms, a default hex code for the colour of geoms (i.e. geoms other than "text", "label", "hline", and "vline"). Note, the "fill" inherits from this argument.
- col_palette_d
For a discrete scale, a character vector of hex codes.
- col_palette_c
For a continuous scale, a character vector of hex codes.
- col_palette_o
For an ordinal scale, a scales::pal_*() function.
- col_palette_na_d
For a discrete scale, a hex code.
- col_palette_na_c
For a continuous scale, a hex code.
- col_palette_na_o
For an ordinal scale, a hex code.
- theme
A ggplot2 theme (e.g. light_mode_t() or dark_mode_r()).
- theme_orientation
The orientation of plot, which affects the theme components that can be removed by the gg_* function. Either "x" or "y". Defaults to NULL, which lets the gg_* function guess it based on the data.
- theme_axis_line_rm
TRUE or FALSE of whether the gg_* function should remove the relevant axis line per the theme_orientation of the plot.
- theme_axis_ticks_rm
TRUE or FALSE of whether the gg_* function should remove the relevant axis ticks per the theme_orientation of the plot.
- theme_panel_grid_rm
TRUE or FALSE of whether the gg_* function should remove the relevant panel grid per the theme_orientation of the plot.
- label_case
A function to apply to a unspecified/unlabelled x_label, y_label, col_label etc. Defaults to snakecase::to_sentence_case.