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.
Diese Übung ist Teil des Kurses
Exploratory Data Analysis in R
Anleitung zur Übung
- Reorder the levels of
align
using thefactor()
function so that printing them reads"Bad"
,"Neutral"
, then"Good"
. - Create a bar chart of counts of the
align
variable.
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Change the order of the levels in align
comics$align <- factor(___,
levels = c(___, ___, ___))
# Create plot of align
ggplot(___, aes(x = ___)) +
geom_bar()