refine_remove_column {rrefine} | R Documentation |
Remove column from OpenRefine project
Description
This function will remove a column from an existing OpenRefine project via an API query to /command/core/apply-operations
and the core/column-removal
operation.
Usage
refine_remove_column(
column,
project.name = NULL,
project.id = NULL,
verbose = FALSE,
validate = TRUE,
...
)
Arguments
column |
Name of the column to be removed |
project.name |
Name of project |
project.id |
Unique identifier for project |
verbose |
Logical specifying whether or not query result should be printed; default is |
validate |
Logical as to whether or not the operation should validate parameters against existing data in project; default is |
... |
Additional parameters to be inherited by |
Value
Operates as a side-effect passing operations to the OpenRefine instance. However, if verbose=TRUE
then the function will return an object of the class "response".
Examples
## Not run:
fp <- system.file("extdata", "lateformeeting.csv", package = "rrefine")
refine_upload(fp, project.name = "lfm")
refine_remove_column(column = "theDate", project.name = "lfm")
## End(Not run)