Constructor and factory for plot_dvconc plot aesthetics.
Call with no arguments to view defaults. Pass element overrides to customize.
Usage
plot_dvconc_theme(
obs_point = NULL,
ref_line = NULL,
loess = NULL,
linear = NULL,
obs = NULL
)Arguments
- obs_point
Observed data point aesthetics. See
pmx_point().- ref_line
Reference line aesthetics. See
pmx_line().- loess
LOESS trend line aesthetics. See
pmx_trend().- linear
Linear trend line aesthetics. See
pmx_trend().- obs
Shortcut: apply shared aesthetics to
obs_point. Seepmx_style().
See also
Other exploratory analysis:
plot_dvconc(),
plot_dvtime(),
plot_dvtime_theme()
Examples
plot_dvconc_theme()
#> <plot_dvconc_theme>
#> obs_point <pmx_point>: shape = 1, size = 1.25, alpha = 0.5
#> ref_line <pmx_line>: linewidth = 0.5, linetype = 2, alpha = 1
#> loess <pmx_trend>: linewidth = 1, linetype = 1, color = black, se_color = lightgrey, se_alpha = 0.4
#> linear <pmx_trend>: linewidth = 1, linetype = 2, color = black, se_color = lightgrey, se_alpha = 0.4
plot_dvconc_theme(loess = pmx_trend(color = "red"))
#> <plot_dvconc_theme>
#> obs_point <pmx_point>: shape = 1, size = 1.25, alpha = 0.5
#> ref_line <pmx_line>: linewidth = 0.5, linetype = 2, alpha = 1
#> loess <pmx_trend>: linewidth = 1, linetype = 1, color = red, se_color = lightgrey, se_alpha = 0.4
#> linear <pmx_trend>: linewidth = 1, linetype = 2, color = black, se_color = lightgrey, se_alpha = 0.4
plot_dvconc_theme(obs = pmx_style(alpha = 0.3))
#> <plot_dvconc_theme>
#> obs_point <pmx_point>: shape = 1, size = 1.25, alpha = 0.3
#> ref_line <pmx_line>: linewidth = 0.5, linetype = 2, alpha = 1
#> loess <pmx_trend>: linewidth = 1, linetype = 1, color = black, se_color = lightgrey, se_alpha = 0.4
#> linear <pmx_trend>: linewidth = 1, linetype = 2, color = black, se_color = lightgrey, se_alpha = 0.4
