Session Ready
Exercise

Recode variables

This exercise picks up where you left off in the previous exercise. In this exercise you will continue to modify your abaloneMod dataset by adding more variables.

Specifically, you will recode the new age variable into two ordinal categories split at the median. You will also create a new variable adult to identify the abalones that are immature infants (i.e. sex = "I") from the adults (sex = "F" or "M").

At the end you will view these new variables and compare them to the original variables to check your recoding results. The previous abaloneMod dataset and dplyr package have been loaded for you.

Instructions 1/3
undefined XP
  • 1
  • 2
  • 3
  • Use ifelse() function to create new character variable agecat for ages less than the median 10.5 and ages equal to or older than 10.5, labeled as "< 10.5" and "10.5 and older".
  • Add agecat to abaloneMod.