8.1 wfutemplates
Document Templates
The goal of wfutemplates
is to codify some commonly used templates at WFU and make report generation easier while adhering to a common visual identity. This package is largely inspired by the memor
package with slowly evolving tweaks.
This package has a lot of the Wake Forest University logos.
Additionally, there are some WFU color palettes that are now available to be used with ggplot2
.
library(wfutemplates)
library(ggplot2)
theme_set(theme_minimal())
ggplot(iris, aes(Sepal.Length,Sepal.Width, color = Species))+
geom_point()+
scale_color_wake()
You can also add a watermark.
ggplot(iris, aes(Sepal.Length,Sepal.Width, color = Species))+
geom_point()+
scale_color_wake()+
add_wfu_watermark()