Mosaic plots
In this exercise, you will use mosaicplot()
to visualize proportions between sex
, adult
and agecat
categorical variables. In the resulting plots notice that the age categories split above and below the age 10.5 years, do not split evenly between infants, males and females (defined by sex
variable) or adults (defined by adult
variable).
The abaloneKeep
dataset has been loaded for you.
This exercise is part of the course
R For SAS Users
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Make mosaicplot of sex by agecat
mosaicplot(___ ~ ___, data = ___,
color = c(___, ___),
main = ___)