Get startedGet started for free

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.

This exercise is part of the course

Exploratory Data Analysis in R

View Course

Exercise instructions

Create a bar chart of align faceted by gender.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Plot of alignment broken down by gender
ggplot(___, aes(x = ___)) + 
  geom_bar() +
  facet_wrap(~ ___)
Edit and Run Code