Jason Venkiteswaran
library(devtools)
devtools::install_github("biogeochem/biogeochemthemes")
library(biogeochemthemes)
library(ggplot2)
ggplot(mtcars, aes(y=mpg, x=disp, colour=factor(cyl))) +
geom_point() +
labs(x="Fuel effiiency (mpg)", y="Weight (tons)", colour = "Cylinders",
title="Jason's ggplot2 scatterplot example",
subtitle="A witty subtitle goes here",
caption="Brought to you by the phrase 'Who knows?!'") +
theme_jason()
ggplot(mtcars, aes(y=mpg, x=disp, colour=factor(cyl))) +
geom_point() +
labs(x="Fuel effiiency (mpg)", y="Weight (tons)", color = "Cylinders",
title="Kateri's ggplot2 scatterplot example",
subtitle="A witty subtitle goes here",
caption="Brought to you by the letters 'MSU'") +
theme_kateri()
ggplot(mtcars, aes(y=mpg, x=disp, colour=factor(cyl))) +
geom_point() +
labs(x="Fuel effiiency (mpg)", y="Weight (tons)", color = "Cylinders",
title="Megan's ggplot2 scatterplot example",
subtitle="A witty subtitle goes here",
caption="Brought to you by extra coffee") +
theme_megan()