Validating age
Now that you found some inconsistencies in the total amounts, you're suspicious that there may also be inconsistencies in the acct_agecolumn, and you want to see if these inconsistencies are related. Using the skills you learned from the video exercise, you'll need to validate the age of each account and see if rows with inconsistent acct_ages are the same ones that had inconsistent totals
dplyr and lubridate are loaded, and accounts is available.
Cet exercice fait partie du cours
Cleaning Data in R
Instructions
- Create a new column called
theoretical_agethat contains the age of each account based on thedate_opened. - Find the accounts where the
acct_agedoesn't match thetheoretical_age.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Find invalid acct_age
accounts %>%
# theoretical_age: age of acct based on date_opened
mutate(theoretical_age = ___) %>%
# Filter for rows where acct_age is different from theoretical_age
___