R4DS Ch. 3

geom_smooth()

{ggplot2}

create smoothed lines to plot

geom_polygon()

{ggplot2}

add layer of polygons to plot

geom_abline()

{ggplot2}

add vertical, horizontal, or diagonal reference lines

coord_flip()

{ggplot2}

switch x and y axes

geom_count()

{ggplot2}

add layer of points sized by count of overlapping points to plot

group

{ggplot2}

argument for grouping data by variable

linetype

{ggplot2}

argument for type of line

alpha

{ggplot2}

argument for opacity of plot objects

geom_boxplot()

{ggplot2}

add layer of boxplots to plot

aes()

{ggplot2}

create aesthetic mappings between data and plot

labs()

{ggplot2}

modify axis, legend, and plot labels

facet_wrap()

{ggplot2}

create subplots from one variable

coord_quickmap()

{ggplot2}

set aspect ratio correctly for maps

position

{ggplot2}

argument for altering plot positioning

coord_fixed()

{ggplot2}

force aspect ratio between data units on axes

ggplot()

{ggplot2}

create a plotting area

geom_point()

{ggplot2}

add layer of points to plot

coord_polar()

{ggplot2}

use polar coordinates

color

{ggplot2}

argument for color of dots, lines, etc

shape

{ggplot2}

argument for shape of points

stat_summary()

{ggplot2}

summarize y values for each x value

geom_jitter()

{ggplot2}

add layer of jittered points to plot

size

{ggplot2}

argument for size of dots, lines, etc.

geom_bar()

{ggplot2}

create bar chart

facet_grid()

{ggplot2}

create grid of subplots from multiple variables

fill

{ggplot2}

argument for color of areas

The end!