forked from tidyverse/ggplot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
110 lines (77 loc) · 5.09 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-"
)
```
# ggplot2 <img src="man/figures/logo.png" align="right" width="120" />
<!-- badges: start -->
[![R-CMD-check](https://github.com/tidyverse/ggplot2/workflows/R-CMD-check/badge.svg)](https://github.com/tidyverse/ggplot2/actions)
[![Codecov test coverage](https://codecov.io/gh/tidyverse/ggplot2/branch/main/graph/badge.svg)](https://app.codecov.io/gh/tidyverse/ggplot2?branch=main)
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/ggplot2)](https://cran.r-project.org/package=ggplot2)
<!-- badges: end -->
## Overview
ggplot2 is a system for declaratively creating graphics, based on [The Grammar of Graphics][gg-book]. 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
```{r, eval = FALSE}
# The easiest way to get ggplot2 is to install the whole tidyverse:
install.packages("tidyverse")
# Alternatively, install just ggplot2:
install.packages("ggplot2")
# Or the development version from GitHub:
# install.packages("devtools")
devtools::install_github("tidyverse/ggplot2")
```
## Cheatsheet
<a href="https://github.com/rstudio/cheatsheets/blob/master/data-visualization.pdf"><img src="https://raw.githubusercontent.com/rstudio/cheatsheets/master/pngs/thumbnails/data-visualization-cheatsheet-thumbs.png" width="630" height="252"/></a>
## 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()`, supply a dataset and aesthetic mapping (with `aes()`). You then add on layers (like `geom_point()` or `geom_histogram()`), scales (like `scale_colour_brewer()`), faceting specifications (like `facet_wrap()`) and coordinate systems (like `coord_flip()`).
```{r example}
library(ggplot2)
ggplot(mpg, aes(displ, hwy, colour = class)) +
geom_point()
```
## Lifecycle
[![lifecycle](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html)
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 <https://exts.ggplot2.tidyverse.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:
1. The [Data Visualisation][r4ds-vis] and
[Graphics for communication][r4ds-comm] chapters in
[R for Data Science][r4ds]. R for Data Science is designed to
give you a comprehensive introduction to the
[tidyverse](https://www.tidyverse.org), and these two chapters will
get you up to speed with the essentials of ggplot2 as quickly as
possible.
1. If you'd like to take an online course, try
[Data Visualization in R With ggplot2][oreilly] by Kara Woo.
1. If you'd like to follow a webinar, try
[Plotting Anything with ggplot2](https://youtu.be/h29g21z0a68) by Thomas Lin
Pedersen.
1. If you want to dive into making common graphics as quickly
as possible, I recommend [The R Graphics Cookbook][cookbook]
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][ggplot2-book]. 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.
## Getting help
There are two main places to get help with ggplot2:
1. The [RStudio community][community] is a friendly place to ask any
questions about ggplot2.
1. [Stack Overflow][so] is a great source of answers to common ggplot2
questions. It is also a great place to get help, once you have
created a reproducible example that illustrates your problem.
[community]: https://community.rstudio.com/
[ggplot2-book]: https://ggplot2-book.org
[gg-book]: https://www.amazon.com/Grammar-Graphics-Statistics-Computing/dp/0387245448/ref=as_li_ss_tl
[so]: https://stackoverflow.com/questions/tagged/ggplot2?sort=frequent&pageSize=50
[cookbook]: https://r-graphics.org
[r4ds]: https://r4ds.had.co.nz
[r4ds-vis]: https://r4ds.had.co.nz/data-visualisation.html
[r4ds-comm]: https://r4ds.had.co.nz/graphics-for-communication.html
[oreilly]: https://learning.oreilly.com/videos/data-visualization-in/9781491963661/