ComenzarEmpieza gratis

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.

Este ejercicio forma parte del curso

Análisis exploratorio de datos en R

Ver curso

Instrucciones de ejercicio

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.

Ejercicio interactivo práctico

Pruebe este ejercicio completando este código de muestra.

# Create plot of city_mpg
cars %>%
  ggplot(___) +
  ___

# Create plot of width
cars %>% 
  ggplot(___) +
  ___
Editar y ejecutar código