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
Note from @mbjones during Data Cleaning Lecture:
During the split-apply-combine lecture, question came up about explaining the summarize portion
q1_response <- survey_clean %>% group_by(Q1) %>% summarise(n = n()) %>% arrange(-n)
Should change the summarise(n = n() ) portion to summarise(number_or_responses = n() ) for more intuitive understanding of what that step is doing
summarise(n = n() )
summarise(number_or_responses = n() )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Note from @mbjones during Data Cleaning Lecture:
During the split-apply-combine lecture, question came up about explaining the summarize portion
Should change the
summarise(n = n() )
portion tosummarise(number_or_responses = n() )
for more intuitive understanding of what that step is doingThe text was updated successfully, but these errors were encountered: