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
Row and column make sense for a contingency table, but not so much for a frequency table (click here to see the difference).
For a frequency table, we should use group and outcome. Or possibly just use the variable names as column headers?
Handing code if we want to grab the group variable names for some reason:
mtcars %>% group_by(am) %>% group_vars()
Or the group levels
mtcars %>% group_by(am) %>% group_keys()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Row and column make sense for a contingency table, but not so much for a frequency table (click here to see the difference).
For a frequency table, we should use group and outcome. Or possibly just use the variable names as column headers?
Handing code if we want to grab the group variable names for some reason:
Or the group levels
The text was updated successfully, but these errors were encountered: