The standard pmplots theme

pm_theme(...)

pm_abline(...)

pm_smooth(...)

pm_hline(...)

Arguments

...

arguments passed to gs (smooth), gh (hline), or ga (abline) and then to the appropriate geom.

Details

pm_theme is an alias to theme_bw.

See also

Examples

data <- pmplots_data_obs() ggplot(data,aes(PRED,DV)) + geom_point() + pm_theme() + pm_smooth(col = "firebrick") + pm_abline()
#> `geom_smooth()` using formula 'y ~ x'