ComeçarComece de graça

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.

Este exercício faz parte do curso

R For SAS Users

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Make mosaicplot of sex by agecat
mosaicplot(___ ~ ___, data = ___,
           color = c(___, ___),
           main = ___)
Editar e executar o código