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
dplyr::case_when()
For example, the following code
centrality <- case_when( type == "parametric" ~ "mean", type == "nonparametric" ~ "median", type == "robust" ~ "trimmed", type == "bayes" ~ "MAP" )
can be aligned to:
The text was updated successfully, but these errors were encountered:
On a second thought, these are not assignments, and so don't lie under the purview of this package.
{styler} already has an issue about this, and that's a more appropriate place for this functionality: r-lib/styler#733
{styler}
Sorry, something went wrong.
No branches or pull requests
For example, the following code
can be aligned to:
The text was updated successfully, but these errors were encountered: