library(ggplot2)
library(mpsTemplates)
ggplot(cars) +
geom_point(aes(speed, dist)) +
theme_mps_noto() +
labs(title = "Cars", subtitle = "Speed and stopping distance",
caption = "Ezekiel, M (1930) Methods of Correlation Analysis",
x = "Speed [mph]",
y = "Stopping Distance [ft]")
pkgdown
The package includes some pkgdown template files intended for use by my packages.
To use, add/edit _pkgdown.yaml in the package root directory:
template:
package: mpsTemplates
bootstrap: 5
navbar:
type: light
bg: light
structure:
right: [search, github]
AND add the following to the DESCRIPTION:
/Needs/website: mps9506/mpsTemplates Config
Use rlibs Github Action to build the pkgdown documentation:
usethis::use_github_action("pkgdown")