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.
Cet exercice fait partie du cours
Exploratory Data Analysis in R
Instructions
Create a bar chart of align
faceted by gender
.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Plot of alignment broken down by gender
ggplot(___, aes(x = ___)) +
geom_bar() +
facet_wrap(~ ___)