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
Currently I can only partialize by all the "other" selected columns (the ones that aren't part of the correlation).
It would be nice to be able to "fix" which columns I want to partialize by.
For example, I can get multi-level correlations this way:
correlation::correlation( iris, partial_by = "Species", # <<<<<<<<<<<< partial = TRUE, multilevel = TRUE )
The text was updated successfully, but these errors were encountered:
rather than adding a new arg partial_by I'd just allow partial to take in characters vectors:
partial_by
partial
correlation::correlation(iris, partial = "Species", multilevel = TRUE)
Sorry, something went wrong.
This was closed but didn't seem to have been implemented.
Closing in favor of #311
No branches or pull requests
Currently I can only partialize by all the "other" selected columns (the ones that aren't part of the correlation).
It would be nice to be able to "fix" which columns I want to partialize by.
For example, I can get multi-level correlations this way:
The text was updated successfully, but these errors were encountered: