Customizing Themes in ggplot2
ggplot2 Themes
Themes control the appearance of plots including fonts, colors, and grid lines.
r
ggplot(mtcars, aes(x=mpg, y=hp)) +
geom_point() +
theme_minimal()
Next Tutorial: Interactive Visualization

