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
This argument allows you to control which columns from .data are retained in the output:
.data
"all"
"used"
"unused"
"none"
transmute()
The text was updated successfully, but these errors were encountered:
7a184e4
No branches or pull requests
This argument allows you to control which columns from
.data
are retained in the output:"all"
, the default, retains all variables."used"
keeps any variables used to make new variables; it's useful for checking your work as it displays inputs and outputs side-by-side."unused"
keeps only existing variables not used to make new variables."none"
, only keeps grouping keys (liketransmute()
).The text was updated successfully, but these errors were encountered: