Learn R Programming

⚠️There's a newer version (3.5.0) of this package.Take me there.

ggplot2

Overview

ggplot2 is a system for declaratively creating graphics, based on The Grammar of Graphics. 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("tidyverse")

# Alternatively, install just ggplot2:
install.packages("ggplot2")

# Or the development version from GitHub:
# install.packages("devtools")
devtools::install_github("tidyverse/ggplot2")

Cheatsheet

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()).

library(ggplot2)

ggplot(mpg, aes(displ, hwy, colour = class)) + 
  geom_point()

Lifecycle

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 and Graphics for communication chapters in R for Data Science. R for Data Science is designed to give you a comprehensive introduction to the tidyverse, and these two chapters will get you up to speed with the essentials of ggplot2 as quickly as possible.

  2. If you’d like to take an online course, try Data Visualization in R With ggplot2 by Kara Woo.

  3. If you’d like to follow a webinar, try Plotting Anything with ggplot2 by Thomas Lin Pedersen.

  4. If you want to dive into making common graphics as quickly as possible, I recommend The R Graphics 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. 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 is a friendly place to ask any questions about ggplot2.

  2. Stack Overflow 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.

Copy Link

Version

Install

install.packages('ggplot2')

Monthly Downloads

1,879,771

Version

3.3.5

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Last Published

June 25th, 2021

Functions in ggplot2 (3.3.5)

aes_eval

Control aesthetic evaluation
aes_linetype_size_shape

Differentiation related aesthetics: linetype, size, shape
aes_

Define aesthetic mappings programmatically
aes_colour_fill_alpha

Colour related aesthetics: colour, fill, and alpha
aes

Construct aesthetic mappings
aes_group_order

Aesthetics: grouping
aes_all

Given a character vector, create a set of identity mappings
annotation_map

Annotation: a map
annotation_raster

Annotation: high-performance rectangular tiling
autolayer

Create a ggplot layer appropriate to a particular data type
aes_auto

Automatic aesthetic mapping
absoluteGrob

Absolute grob
aes_position

Position related aesthetics: x, y, xmin, xmax, ymin, ymax, xend, yend
add_theme

Modify properties of an element in a theme object
autoplot

Create a complete ggplot appropriate to a particular data type
borders

Create a layer of map borders
binned_scale

Binning scale constructor
as_labeller

Coerce to labeller function
as.list.ggproto

Convert a ggproto object to a list
coord_fixed

Cartesian coordinates with fixed "aspect ratio"
coord_flip

Cartesian coordinates with x and y flipped
annotation_custom

Annotation: Custom grob
continuous_scale

Continuous scale constructor
coord_polar

Polar coordinates
annotation_logticks

Annotation: log tick marks
calc_element

Calculate the element properties, by inheriting properties from its parents
expand_limits

Expand the plot limits, using data
coord_map

Map projections
combine_vars

Take input data and define a mapping between faceting variables and ROW, COL and PANEL keys
coord_munch

Munch coordinates data
expansion

Generate expansion vector for scales
discrete_scale

Discrete scale constructor
facet_grid

Lay out panels in a grid
coord_trans

Transformed Cartesian coordinate system
element_grob

Generate grid grob from theme element
element_render

Render a specified theme element into a grob
fortify

Fortify a model with data.
geom_hex

Hexagonal heatmap of 2d bin counts
geom_freqpoly

Histograms and frequency polygons
fortify.lm

Supplement the data fitted to a linear model with model fit statistics.
geom_boxplot

A box and whiskers plot (in the style of Tukey)
geom_count

Count overlapping points
coord_cartesian

Cartesian coordinates
geom_contour

2D contours of a 3D surface
geom_dotplot

Dot plot
facet_null

Facet specification: a single panel.
geom_density_2d

Contours of a 2D density estimate
geom_bin_2d

Heatmap of 2d bin counts
geom_blank

Draw nothing
cut_interval

Discretise numeric data into categorical
draw_key

Key glyphs for legends
find_panel

Find panels in a gtable
geom_abline

Reference lines: horizontal, vertical, and diagonal
diamonds

Prices of over 50,000 round cut diamonds
geom_bar

Bar charts
geom_errorbarh

Horizontal error bars
geom_qq_line

A quantile-quantile plot
geom_function

Draw a function as a continuous curve
geom_quantile

Quantile regression
annotate

Create an annotation layer
geom_density

Smoothed density estimates
geom_point

Points
geom_polygon

Polygons
geom_segment

Line segments and curves
fortify-multcomp

Fortify methods for objects produced by multcomp
geom_smooth

Smoothed conditional means
geom_ribbon

Ribbons and area plots
ggproto

Create a new ggproto object
ggsave

Save a ggplot (or other grid object) with sensible defaults
is.Coord

Is this object a coordinate system?
is.facet

Is this object a faceting specification?
mpg

Fuel economy data from 1999 to 2008 for 38 popular models of cars
msleep

An updated and expanded version of the mammals sleep dataset
geom_rug

Rug plots in the margins
geom_raster

Rectangles
geom_violin

Violin plot
benchplot

Benchmark plot creation time. Broken down into construct, build, render and draw times.
position_jitter

Jitter points to avoid overplotting
bidirection

Utilities for working with bidirectional layers
scale_colour_discrete

Discrete colour scales
scale_continuous

Position scales for continuous data (x & y)
position_jitterdodge

Simultaneously dodge and jitter
reexports

Objects exported from other packages
register_theme_elements

Define and register new theme elements
scale_shape

Scales for shapes, aka glyphs
economics

US economic time series
scale_size

Scales for area or radius
margin

Theme elements
+.gg

Add components to a plot
get_alt_text

Extract alt text from a plot
ggplotGrob

Generate a ggplot2 plot grob.
ggplot2-package

ggplot2: Create Elegant Data Visualisations Using the Grammar of Graphics
facet_wrap

Wrap a 1d ribbon of panels into 2d
ggplot2-ggproto

Base ggproto classes for ggplot2
stat_summary_bin

Summarise y values at unique/binned x
stat_sf_coordinates

Extract coordinates from 'sf' objects
ggplot_add

Add custom objects to ggplot
ggplot_gtable

Build a plot with all the usual bits and pieces.
ggplot_build

Build ggplot for rendering.
theme

Modify components of a theme
guide_bins

A binned version of guide_legend
is.theme

Reports whether x is a theme object
guide_axis

Axis guide
theme_get

Get, set, and modify the active theme
fortify.map

Fortify method for map objects
is.ggplot

Reports whether x is a ggplot object
faithfuld

2d density estimate of Old Faithful data
label_bquote

Label with mathematical expressions
luv_colours

colors() in Luv space
scale_colour_viridis_d

Viridis colour scales from viridisLite
scale_linetype

Scale for line patterns
scale_manual

Create your own discrete scale
qplot

Quick plot
print.ggproto

Format or print a ggproto object
map_data

Create a data frame of map data
is.rel

Reports whether x is a rel object
fortify.sp

Fortify method for classes from the sp package.
guide_colourbar

Continuous colour bar guide
resolution

Compute the "resolution" of a numeric vector
should_stop

Used in examples to illustrate when errors should occur.
guide_coloursteps

Discretized colourbar guide
geom_jitter

Jittered points
render_strips

Render panel strips
sf_transform_xy

Transform spatial position data
summarise_plot

Summarise built plot objects
layer

Create a new layer
txhousing

Housing sales in TX
summary.ggplot

Displays a useful description of a ggplot object
geom_spoke

Line segments parameterised by location, direction and distance
seals

Vector field of seal movements
geom_crossbar

Vertical intervals: lines, crossbars & errorbars
layer_sf

Create a new sf layer that auto-maps geometry data
stat_summary_2d

Bin and summarise in 2d (rectangle & hexagons)
stat_unique

Remove duplicates
geom_label

Text
translate_qplot_lattice

Translating between qplot and lattice
update_geom_defaults

Modify geom/stat aesthetic defaults for future plots
translate_qplot_ggplot

Translating between qplot and ggplot
position_identity

Don't adjust position
max_height

Get the maximal width/length of a list of grobs
position_dodge

Dodge overlapping objects side-to-side
mean_se

Calculate mean and standard error of the mean
geom_map

Polygons from a reference map
scale_date

Position scales for date/time data
scale_binned

Positional scales for binning continuous data (x & y)
scale_alpha

Alpha transparency scales
waiver

A waiver object.
stat_ellipse

Compute normal data ellipses
scale_x_discrete

Position scales for discrete data
stat_identity

Leave data as is
vars

Quote faceting variables
update_labels

Update axis/legend labels
zeroGrob

The zero grob draws nothing and has zero size.
geom_path

Connect observations
wrap_dims

Arrange 1d structure into a grid
gg_dep

Give a deprecation error, warning, or message, depending on version number.
graphical-units

Graphical units
guide-exts

S3 generics for guides.
labeller

Construct labelling specification
guide_none

Empty guide
guide_legend

Legend guide
labellers

Useful labeller functions
limits

Generate correct scale type for specified limits
ggplot

Create a new ggplot
lims

Set scale limits
position_nudge

Nudge points a fixed distance
position_stack

Stack overlapping objects on top of each another
ggtheme

Complete themes
CoordSf

Visualise sf objects
guides

Set guides for each scale
hmisc

A selection of summary functions from Hmisc
remove_missing

Convenience function to remove missing values from a data.frame
scale_colour_gradient

Gradient colour scales
scale_colour_grey

Sequential grey colour scales
render_axes

Render panel axes
labs

Modify axis, legend, and plot labels
scale_colour_steps

Binned gradient colour scales
scale_type

Determine default scale type
last_plot

Retrieve the last plot to be modified or created.
merge_element

Merge a parent element into a child element
midwest

Midwest demographics
print.ggplot

Explicitly draw plot
presidential

Terms of 11 presidents from Eisenhower to Obama
scale_colour_brewer

Sequential, diverging and qualitative colour scales from ColorBrewer
scale_colour_continuous

Continuous and binned colour scales
scale_colour_hue

Evenly spaced colours for discrete data
scale_identity

Use values without scaling
sec_axis

Specify a secondary axis
stat_ecdf

Compute empirical cumulative distribution
standardise_aes_names

Standardise aesthetic names
set_last_plot

Set the last plot to be fetched by lastplot()
transform_position

Convenience function to transform all position variables.
tidyeval

Tidy eval helpers