ComenzarEmpieza gratis

Marginal bar chart

If you are interested in the distribution of alignment of all superheroes, it makes sense to construct a bar chart for just that single variable.

You can improve the interpretability of the plot, though, by implementing some sensible ordering. Superheroes that are "Neutral" show an alignment between "Good" and "Bad", so it makes sense to put that bar in the middle.

Este ejercicio forma parte del curso

Análisis exploratorio de datos en R

Ver curso

Instrucciones de ejercicio

  • Reorder the levels of align using the factor() function so that printing them reads "Bad", "Neutral", then "Good".
  • Create a bar chart of counts of the align variable.

Ejercicio interactivo práctico

Pruebe este ejercicio completando este código de muestra.

# Change the order of the levels in align
comics$align <- factor(___, 
                       levels = c(___, ___, ___))

# Create plot of align
ggplot(___, aes(x = ___)) + 
  geom_bar()
Editar y ejecutar código