Chapter 10 ggplot2_cheatsheet
Xiaorui Zhang
10.1 Some Advanced Techs from ggplot2
10.2 Dataset
library(ggplot2)
library(dplyr)
## [, 1] mpg Miles/(US) gallon
## [, 2] cyl Number of cylinders
## [, 3] disp Displacement (cu.in.)
## [, 4] hp Gross horsepower
## [, 5] drat Rear axle ratio
## [, 6] wt Weight (1000 lbs)
## [, 7] qsec 1/4 mile time
## [, 8] vs Engine (0 = V-shaped, 1 = straight)
## [, 9] am Transmission (0 = automatic, 1 = manual)
## [,10] gear Number of forward gears
## [,11] carb Number of carburetors
head(mtcars)
## mpg cyl disp hp drat wt qsec vs am gear carb
## Mazda RX4 21.0 6 160 110 3.90 2.620 16.46 0 1 4 4
## Mazda RX4 Wag 21.0 6 160 110 3.90 2.875 17.02 0 1 4 4
## Datsun 710 22.8 4 108 93 3.85 2.320 18.61 1 1 4 1
## Hornet 4 Drive 21.4 6 258 110 3.08 3.215 19.44 1 0 3 1
## Hornet Sportabout 18.7 8 360 175 3.15 3.440 17.02 0 0 3 2
## Valiant 18.1 6 225 105 2.76 3.460 20.22 1 0 3 1
10.3 Facet
10.4 Facet layer basics
10.5 Many variables
10.6 Formula notation
ggplot(mtcars, aes(wt, mpg)) +
geom_point() +
## Facet rows by am using formula notation
facet_grid(am ~ .)
10.7 Labeling facets
10.8 Coordinates
10.9 Expand and clip
## Expand sets a buffer margin around the plot, so data and axes don't overlap.
## Setting expand to 0 draws the axes to the limits of the data.
## Clip decides whether plot elements that would lie outside the plot panel
## are displayed or ignored ("clipped").
ggplot(mtcars, aes(wt, mpg)) +
geom_point(size = 2) +
## Add Cartesian coordinates with zero expansion
coord_cartesian(expand = 0) +
theme_classic()
10.10 Flipping axes
## Plot fcyl bars, filled by fam
ggplot(mtcars, aes(as.factor(cyl), fill = as.factor(am))) +
## Place bars side by side
geom_bar(position = "dodge")
10.11 Pie charts
10.12 Conclusion
This is only a little part of ggplot2, and then in my additional resources, compared with ggplot2, everyone can learn the visualization tools from Python if needed.