Data visualization, part 1. Code for Quiz 7.
create a plot with the faithful dataset
add point with geom_point
eruptions to the x-axiswaiting to the y-axiswaiting is smaller or greater than 57ggplot(faithful) +
geom_point(aes(x= eruptions, y= waiting, color = waiting > 57))

create a plot with faithful dataset
add points with geom_point
eruptions to the x-axiswaiting to the y-axisggplot(faithful) +
geom_point(aes(x = eruptions, y = waiting),
colour = "blueviolet")

create a plot with the faithful dataset
use geom_histogram() to plot the distribution of waiting time
waiting to the x-axisggplot(faithful) +
geom_histogram(aes(x = waiting))

see how shapes and sizes of points can be specified here: https://ggplot2.tidyverse.org/articles/ggplot2-specs.html#sec:shape-spec
create a plot with the faithful dataset
add points with geom_point
eruptions to the x-axiswaiting to the y-axisggplot(faithful) +
geom_point(aes(x = eruptions, y = waiting),
shape = "plus", size = 1, alpha = 0.4)

Create a plot with the faithful dataset
use geom_histogram() to plot the distribution of the eruptions (time)
fill in the histogram based on whether eruptions are greater than or less than 3.2 minutes
ggplot(faithful) +
geom_histogram(aes(x = eruptions, fill = "time" > 3.2))

create a plot with the mpg dataset
add geom_bar() to create a bar chart of the variable manufacturer
ggplot(mpg) +
geom_bar(aes(x = manufacturer))

manufacturer instead of classmpg_counted <- mpg %>%
count(manufacturer, name = 'count')
ggplot(mpg_counted) +
geom_bar(aes(x = manufacturer, y = count), stat = 'identity')

change the code to plot bar chart of each manufacturer as a percent of total
change class to manufacturer
ggplot(mpg) +
geom_bar(aes(x = manufacturer, y = after_stat(100 * count / sum(count))))

use stat_summary() to add a dot at the median of each group
ggplot(mpg) +
geom_jitter(aes(x = class, y = hwy), width = 0.2) +
stat_summary(aes(x = class, y = hwy), geom = "point",
fun = "median", color = "purple3",
shape = "diamond", size = 4)
