rvn_theme_RavenR {RavenR} | R Documentation |
rvn_theme_RavenR makes the general Raven R Theme for all ggplots
rvn_theme_RavenR()
This function sets up the default theme for all ggplots generated using a built in Raven R function. Made by adjusting the built in theme_bw().
returns a theme for use in ggplot2 figures
rvn_annual_volume
to create a scatterplot of annual flow
volumes.
# generate a basic ggplot and apply the RavenR theme library(ggplot2) ggplot(data=cars, aes(x=speed, y=dist))+ geom_point()+ rvn_theme_RavenR()