Conditional bar chart
Now, if you want to break down the distribution of alignment based on gender, you're looking for conditional distributions.
You could make these by creating multiple filtered datasets (one for each gender) or by faceting the plot of alignment based on gender. As a point of comparison, we've provided your plot of the marginal distribution of alignment from the last exercise.
Diese Übung ist Teil des Kurses
Exploratory Data Analysis in R
Anleitung zur Übung
Create a bar chart of align
faceted by gender
.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Plot of alignment broken down by gender
ggplot(___, aes(x = ___)) +
geom_bar() +
facet_wrap(~ ___)