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
@icrandell can you check to make sure the assumption I'm making is correct?
Run the below code and look at the ex_df and xe_df variables.
ex_df
xe_df
library(tibble) # this is an example of the assumption i am making # given this df as an example ex_df <- tribble( ~report_no, ~child, ~adult, ~elderly, ~unknown, ~address, 1, 1, 1, 1, 1, 'a', 2, 2, 2, 2, 2, 'b', 3, 3, 2, 1, 0, 'c' ) # i give you back this xe_df <- tribble( ~report_no, ~child, ~adult, ~elderly, ~unknown, ~address, 1, 1, 0, 0, 0, 'a', 1, 0, 1, 0, 0, 'a', 1, 0, 0, 1, 0, 'a', 1, 0, 0, 0, 1, 'a', 2, 1, 0, 0, 0, 'b', 2, 1, 0, 0, 0, 'b', 2, 0, 1, 0, 0, 'b', 2, 0, 1, 0, 0, 'b', 2, 0, 0, 1, 0, 'b', 2, 0, 0, 1, 0, 'b', 2, 0, 0, 0, 1, 'b', 2, 0, 0, 0, 1, 'b', 3, 1, 0, 0, 0, 'c', 3, 1, 0, 0, 0, 'c', 3, 1, 0, 0, 0, 'c', 3, 0, 1, 0, 0, 'c', 3, 0, 1, 0, 0, 'c', 3, 0, 0, 1, 0, 'c' )
The text was updated successfully, but these errors were encountered:
This is correct.
Sorry, something went wrong.
No branches or pull requests
@icrandell can you check to make sure the assumption I'm making is correct?
Run the below code and look at the
ex_df
andxe_df
variables.The text was updated successfully, but these errors were encountered: