We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need to save the output of the previous slide where we replace 0s with NAs so that we can replace NAs with 2005 on the next slide so change this:
bike %>% mutate(dateInstalled = na_if(dateInstalled, 0))
To this:
bike <- bike %>% mutate(dateInstalled = na_if(dateInstalled, 0))
to allow this slide to work:
bike %>% mutate(dateInstalled = replace_na(dateInstalled, 2005))
The text was updated successfully, but these errors were encountered:
Thank you! Was it clear I did this in the wee hours? 😛
Also need to remove the word key from the student Rmd
Data-Wrangling/labs/missing-data-lab.Rmd
Line 2 in f8e8a81
Sorry, something went wrong.
No branches or pull requests
Need to save the output of the previous slide where we replace 0s with NAs so that we can replace NAs with 2005 on the next slide
so change this:
To this:
to allow this slide to work:
The text was updated successfully, but these errors were encountered: