CommencerCommencer gratuitement

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.

Cet exercice fait partie du cours

Exploratory Data Analysis in R

Afficher le cours

Instructions

  • 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.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

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

# Create plot of align
ggplot(___, aes(x = ___)) + 
  geom_bar()
Modifier et exécuter le code