Makes the general Raven R Theme for all ggplots

rvn_theme_RavenR()

Value

returns a theme for use in ggplot2 figures

Details

Sets up the default theme for all ggplots generated using a built in Raven R function. Made by adjusting the built in theme_bw.

See also

rvn_annual_volume to create a scatterplot of annual flow volumes.

Examples

# generate a basic ggplot and apply the RavenR theme
library(ggplot2)
ggplot(data=cars, aes(x=speed, y=dist))+
geom_point()+
rvn_theme_RavenR()