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.
Este ejercicio forma parte del curso
Análisis exploratorio de datos en R
Instrucciones de ejercicio
Create a bar chart of align
faceted by gender
.
Ejercicio interactivo práctico
Pruebe este ejercicio completando este código de muestra.
# Plot of alignment broken down by gender
ggplot(___, aes(x = ___)) +
geom_bar() +
facet_wrap(~ ___)