Zhiguang Huo (Caleb)
Monday September 21, 2020
ggplot2 is based on the grammer of graphics, the idea that you can build every graph from the same few components:
## ── Attaching packages ─────────────────────────────────── tidyverse 1.3.0 ──
## ✓ tibble 2.1.3 ✓ dplyr 1.0.1
## ✓ tidyr 1.0.2 ✓ stringr 1.4.0
## ✓ readr 1.3.1 ✓ forcats 0.4.0
## ✓ purrr 0.3.3
## ── Conflicts ────────────────────────────────────── tidyverse_conflicts() ──
## x dplyr::filter() masks stats::filter()
## x dplyr::lag() masks stats::lag()
## Classes 'tbl_df', 'tbl' and 'data.frame': 234 obs. of 11 variables:
## $ manufacturer: chr "audi" "audi" "audi" "audi" ...
## $ model : chr "a4" "a4" "a4" "a4" ...
## $ displ : num 1.8 1.8 2 2 2.8 2.8 3.1 1.8 1.8 2 ...
## $ year : int 1999 1999 2008 2008 1999 1999 2008 1999 1999 2008 ...
## $ cyl : int 4 4 4 4 6 6 6 4 4 4 ...
## $ trans : chr "auto(l5)" "manual(m5)" "manual(m6)" "auto(av)" ...
## $ drv : chr "f" "f" "f" "f" ...
## $ cty : int 18 21 20 21 16 18 18 18 16 20 ...
## $ hwy : int 29 29 31 30 26 26 27 26 25 28 ...
## $ fl : chr "p" "p" "p" "p" ...
## $ class : chr "compact" "compact" "compact" "compact" ...
## # A tibble: 6 x 11
## manufacturer model displ year cyl trans drv cty hwy fl class
## <chr> <chr> <dbl> <int> <int> <chr> <chr> <int> <int> <chr> <chr>
## 1 audi a4 1.8 1999 4 auto(l5) f 18 29 p compa…
## 2 audi a4 1.8 1999 4 manual(m5) f 21 29 p compa…
## 3 audi a4 2 2008 4 manual(m6) f 20 31 p compa…
## 4 audi a4 2 2008 4 auto(av) f 21 30 p compa…
## 5 audi a4 2.8 1999 6 auto(l5) f 16 26 p compa…
## 6 audi a4 2.8 1999 6 manual(m5) f 18 26 p compa…
ggplot(data = mpg) +
aes(x=displ, y=hwy, color = "blue") +
geom_point() ## Doesn't work, aes only maps a variable (in the data) to a color.
ggplot(data = mpg) +
aes(x=displ, y=hwy, color = I("blue")) +
geom_point() ## use I to indicate absolute color
ggplot(data = mpg) +
aes(x=displ, y=hwy ) +
geom_point(color = "blue") ## or use the color here
ggplot(data = mpg) +
aes(x=displ, y=hwy, size = "3") +
geom_point() ## Doesn't work, aes only maps a variable (in the data) to a size
ggplot(data = mpg) +
aes(x=displ, y=hwy, size = I(3)) +
geom_point() ## use I to indicate absolute size
ggplot(data = mpg) +
aes(x=displ, y=hwy ) +
geom_point(size = 3) ## or use the size here
ggplot(data = mpg) +
aes(x=displ, y=hwy ) +
geom_point(size = rel(3)) ## relative size
ggplot(data = mpg) +
aes(x=displ, y=hwy, alpha = 1) +
geom_point() ## Doesn't work, aes only maps a variable (in the data) to a alpha
ggplot(data = mpg) +
aes(x=displ, y=hwy, alpha = I(0.5)) +
geom_point() ## use I to indicate absolute alpha
ggplot(data = mpg) +
aes(x=displ, y=hwy ) +
geom_point(alpha = 0.5) ## or use the alpha here
## [1] "geom_abline" "geom_area" "geom_bar" "geom_bin2d"
## [5] "geom_blank" "geom_boxplot" "geom_col" "geom_contour"
## [9] "geom_count" "geom_crossbar" "geom_curve" "geom_density"
## [13] "geom_density_2d" "geom_density2d" "geom_dotplot" "geom_errorbar"
## [17] "geom_errorbarh" "geom_freqpoly" "geom_hex" "geom_histogram"
## [21] "geom_hline" "geom_jitter" "geom_label" "geom_line"
## [25] "geom_linerange" "geom_map" "geom_path" "geom_point"
## [29] "geom_pointrange" "geom_polygon" "geom_qq" "geom_qq_line"
## [33] "geom_quantile" "geom_raster" "geom_rect" "geom_ribbon"
## [37] "geom_rug" "geom_segment" "geom_sf" "geom_sf_label"
## [41] "geom_sf_text" "geom_smooth" "geom_spoke" "geom_step"
## [45] "geom_text" "geom_tile" "geom_violin" "geom_vline"
ggplot(data = mpg) +
aes(displ, hwy, colour=class) + ## this is global color
geom_point(aes(size=cyl)) +
geom_line()
## `geom_smooth()` using method = 'loess' and formula 'y ~ x'
mpgSummary <- mpg %>%
group_by(class) %>%
summarize(meanDispl = mean(displ), sdDispl = sd(displ)) ## sd is standard deviation, standard error se = sd/sqrt(n)
## `summarise()` ungrouping output (override with `.groups` argument)
ggplot(data = mpgSummary) +
aes(x=class, y=meanDispl, fill=class) +
geom_bar(position=position_dodge(), stat="identity",
colour="black", # Use black outlines,
size=.3) + # Thinner lines
geom_errorbar(aes(ymin=meanDispl-sdDispl, ymax=meanDispl+sdDispl),
size=.3, # Thinner lines
width=.2,
position=position_dodge(.9))
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
ggplot(data = mpg) +
aes(x = hwy) +
geom_histogram(aes(fill = class)) +
facet_grid(. ~ class) ## or facet_grid(cols = vars(class))
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
ggplot(data = mpg) +
aes(x = hwy) +
geom_histogram(aes(fill = class)) +
facet_grid(class ~ .) ## or facet_grid(rows = vars(class))
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
ggplot(data = mpg) +
aes(x = hwy) +
geom_histogram(aes(fill = class)) +
facet_grid(drv ~ class) ## or facet_grid(rows = vars(drv), cols = vars(class))
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Loading required package: Matrix
##
## Attaching package: 'Matrix'
## The following objects are masked from 'package:tidyr':
##
## expand, pack, unpack
## Reaction Days Subject
## 1 249.5600 0 308
## 2 258.7047 1 308
## 3 250.8006 2 308
## 4 321.4398 3 308
## 5 356.8519 4 308
sleepSummary <- sleepstudy %>%
group_by(Days) %>%
summarize(Mean = mean(Reaction), SD = sd(Reaction), SE = sd(Reaction)/sqrt(n()))
## `summarise()` ungrouping output (override with `.groups` argument)
sp + geom_text(size=6)
sp + geom_text(hjust=0, vjust=0)
sp + geom_text(aes(fontface=2))
sp + geom_text(family = "Times New Roman")
sp + geom_text(aes(color=factor(cyl)))
sp + geom_text(aes(size=wt))
plot <- ggplot(mpg, aes(displ, hwy)) + geom_point()
plot + theme(
panel.background = element_blank(),
axis.text = element_blank()
)
plot + theme(
axis.text = element_text(colour = "red", size = rel(1.5))
)
plot + theme(
axis.line = element_line(arrow = arrow())
)
plot + theme(
panel.background = element_rect(fill = "white"),
plot.margin = margin(2, 2, 2, 2, "cm"),
plot.background = element_rect(
fill = "grey90",
colour = "black",
size = 1
)
)
## all changes are relative to the default value
line
rect
text
title
aspect.ratio
axis.title
axis.title.x
axis.title.y
axis.text
axis.text.x
axis.text.y
axis.ticks
axis.ticks.x
axis.ticks.y,
axis.ticks.length
axis.line
axis.line.x
axis.line.y
## for more options, see
?theme
theme_gray
black.bold.text <- element_text(face = "bold", color = "black", size=20)
ggplot(mpg, aes(displ, hwy, colour=class)) + geom_point() +
labs(title="hwy vs displ") +
theme_bw() +
theme(text = black.bold.text)
black.bold.text <- element_text(face = "bold", color = "black", size=20)
red.italic.text <- element_text(face = "italic", color = "red", size=15)
ggplot(mpg, aes(displ, hwy, colour=class)) + geom_point() +
labs(title="hwy vs displ") +
theme_bw() +
theme(axis.text = black.bold.text , axis.title = black.bold.text,
legend.title = red.italic.text,
legend.text = black.bold.text)
p <- ggplot(mtcars, aes(mpg, wt)) +
geom_point(aes(colour = factor(cyl)))
p + scale_x_continuous(breaks = c(15,25),
labels = c("A", "B"),
name = "My MPG")
## `geom_smooth()` using method = 'loess' and formula 'y ~ x'
## `geom_smooth()` using method = 'loess' and formula 'y ~ x'
Setting the limits on a scale converts all values outside the range to NA.
## `geom_smooth()` using method = 'loess' and formula 'y ~ x'
## Warning: Removed 136 rows containing non-finite values (stat_smooth).
## Warning: Removed 136 rows containing missing values (geom_point).