Get startedGet started for free

Conditional proportions

The following code generates tables of joint and conditional proportions, respectively:

tab <- table(comics$align, comics$gender)
options(scipen = 999, digits = 3) # Print fewer digits
prop.table(tab)     # Joint proportions
prop.table(tab, 2)  # Conditional on columns

Go ahead and run it in the console. Approximately what proportion of all female characters are good?

This exercise is part of the course

Exploratory Data Analysis in R

View Course

Hands-on interactive exercise

Turn theory into action with one of our interactive exercises

Start Exercise