Plot selection
Consider two other columns in the cars
dataset: city_mpg
and width
. Which is the most appropriate plot for displaying the important features of their distributions? Remember, both density plots and box plots display the central tendency and spread of the data, but the box plot is more robust to outliers.
This exercise is part of the course
Exploratory Data Analysis in R
Exercise instructions
Use density plots or box plots to construct the following visualizations. For each variable, try both plots and submit the one that is better at capturing the important structure.
- Display the distribution of
city_mpg
. - Display the distribution of
width
.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Create plot of city_mpg
cars %>%
ggplot(___) +
___
# Create plot of width
cars %>%
ggplot(___) +
___