16.6 About themes
You can change the default global theme (background color, grid lines etc. all non-data display):
# go back to a previous plot
<- ggplot(data=df_long, mapping=aes(x=value)) + geom_histogram()
p
# Try different themes
+ theme_bw() p
+ theme_minimal() p
+ theme_void() p
+ theme_grey() p
+ theme_dark() p
+ theme_light() p