deleteVariables {crunch} | R Documentation |
Delete Variables Within a Dataset
Description
This function permanently deletes a variable from a dataset.
Usage
deleteVariables(dataset, variables)
deleteVariable(dataset, variables)
Arguments
dataset |
the Dataset to modify |
variables |
aliases (following |
Details
In an interactive session, you will be prompted to confirm that you
wish to delete the variable. To avoid that prompt, or to delete variables from a
non-interactive session, wrap the call in with_consent()
to give
your permission to delete.
Value
(invisibly) dataset
with the specified variables deleted
See Also
delete()
; deleteSubvariable()
; For a non-destructive
alternative, see hide()
.
[Package crunch version 1.30.4 Index]