Exploratory Data Analysis in R
Andrew Bray
Assistant Professor, Reed College
ggplot(common_cyl, aes(x = as.factor(ncyl), y = city_mpg)) +
geom_boxplot()
Warning message:
Removed 11 rows containing non-finite values (stat_boxplot).
ggplot(common_cyl, aes(x = as.factor(ncyl), y = city_mpg)) +
geom_boxplot()
Warning message:
Removed 11 rows containing non-finite values (stat_boxplot).
ggplot(common_cyl, aes(x = as.factor(ncyl), y = city_mpg)) +
geom_boxplot()
Warning message:
Removed 11 rows containing non-finite values (stat_boxplot).
Exploratory Data Analysis in R