The standard pmplots theme
pm_theme(...)
pm_abline(...)
pm_smooth(...)
pm_hline(...)
pm_theme
is an alias to theme_bw
.
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'