Verdeling van één variabele

Exploratory Data Analysis in R

Andrew Bray

Assistant Professor, Reed College

Marginaal vs. conditioneel

ggplot(cars, aes(x = hwy_mpg)) +
  geom_histogram()
`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
Warning message:
Removed 14 rows containing non-finite values (stat_bin). 

ch2_2.003.png

Exploratory Data Analysis in R

Marginaal vs. conditioneel

ggplot(cars, aes(x = hwy_mpg)) +
  geom_histogram() +
  facet_wrap(~pickup)
`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
Warning message:
Removed 14 rows containing non-finite values (stat_bin).

ch2_2.006.png

Exploratory Data Analysis in R

Een datapijplijn opbouwen

cars2 <- cars %>%
  filter(eng_size < 2.0)

ggplot(cars2, aes(x = hwy_mpg)) +
  geom_histogram()
Exploratory Data Analysis in R

Een datapijplijn opbouwen

cars %>%
  filter(eng_size < 2.0) %>%
  ggplot(aes(x = hwy_mpg)) +
  geom_histogram()
Exploratory Data Analysis in R

Gefilterd en gefacetteerd histogram

cars %>%
  filter(eng_size < 2.0) %>%
  ggplot(aes(x = hwy_mpg)) +
  geom_histogram()
`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

ch2_2.011.png

Exploratory Data Analysis in R

Brede binbreedte

cars %>%
  filter(eng_size < 2.0) %>%
  ggplot(aes(x = hwy_mpg)) +
  geom_histogram(binwidth = 5)

ch2_2.013.png

Exploratory Data Analysis in R

Dichtheidsplot

cars %>%
  filter(eng_size < 2.0) %>%
  ggplot(aes(x = hwy_mpg)) +
  geom_density()

ch2_2.015.png

Exploratory Data Analysis in R

Brede bandbreedte

cars %>%   
  filter(eng_size < 2.0) %>%
  ggplot(aes(x = hwy_mpg)) +
  geom_density(bw = 5)

ch2_2.017.png

Exploratory Data Analysis in R

Laten we oefenen!

Exploratory Data Analysis in R

Preparing Video For Download...