Create Elegant Data Visualisations Using The Grammar of Graphics - Ggplot2
Create Elegant Data Visualisations Using The Grammar of Graphics - Ggplot2
ggplot2 is a system for declaratively creating graphics, based on The Grammar of Graphics
(http://amzn.to/2ef1eWp). You provide the data, tell ggplot2 how to map variables to aesthetics, what graphical
primitives to use, and it takes care of the details.
Installation
# The easiest way to get ggplot2 is to install the whole tidyverse:
install.packages (https://www.rdocumentation.org/packages/utils/topics/install.packages)
Cheatsheet
(https://github.com/rstudio/cheatsheets/blob/master/data-visualization-2.1.pdf)
Usage
It’s hard to succinctly describe how ggplot2 works because it embodies a deep philosophy of visualisation.
However, in most cases you start with ggplot() (reference/ggplot.html) , supply a dataset and aesthetic
mapping (with aes() (reference/aes.html) ). You then add on layers (like geom_point()
(reference/geom_point.html) or geom_histogram() (reference/geom_histogram.html) ), scales
(reference/coord_flip.html) ).
library (https://www.rdocumentation.org/packages/base/topics/library)(ggplot2)
Lifecycle
lifecycle stable (https://www.tidyverse.org/lifecycle/#stable)
ggplot2 is now over 10 years old and is used by hundreds of thousands of people to make millions of plots. That
means, by-and-large, ggplot2 itself changes relatively little. When we do make changes, they will be generally to
add new functions or arguments rather than changing the behaviour of existing functions, and if we do make
changes to existing behaviour we will do them for compelling reasons.
If you are looking for innovation, look to ggplot2’s rich ecosystem of extensions. See a community maintained list
at http://www.ggplot2-exts.org/gallery/ (http://www.ggplot2-exts.org/gallery/).
Learning ggplot2
If you are new to ggplot2 you are better off starting with a systematic introduction, rather than trying to learn
from reading individual documentation pages. Currently, there are three good places to start:
2. If you’d like to take an online course, try Data Visualization in R With ggplot2
(http://shop.oreilly.com/product/0636920052807.do) by Kara Woo.
3. If you want to dive into making common graphics as quickly as possible, I recommend The R Graphics
Cookbook (https://amzn.to/2TU78ip) by Winston Chang. It provides a set of recipes to solve common
graphics problems.
If you’ve mastered the basics and want to learn more, read ggplot2: Elegant Graphics for Data Analysis
(http://amzn.to/2fncG50). It describes the theoretical underpinnings of ggplot2 and shows you how all the pieces
fit together. This book helps you understand the theory that underpins ggplot2, and will help you create new
types of graphics specifically tailored to your needs. The book is not available for free, but you can find the
complete source for the book at https://github.com/hadley/ggplot2-book (https://github.com/hadley/ggplot2-
book).
Getting help
There are two main places to get help with ggplot2:
1. The RStudio community (https://community.rstudio.com/) is a friendly place to ask any questions about
ggplot2.