View source: R/refine_operations.R
| refine_move_column | R Documentation | 
This function allows users to move an existing column in an OpenRefine project via an API query to /command/core/apply-operations and the core/column-move operation.
refine_move_column( column, index = 0, project.name = NULL, project.id = NULL, verbose = FALSE, validate = TRUE, ... )
| column | Name of the column to be removed | 
| index | Index to which the column should be placed in the project; default is  | 
| 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  | 
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".
## Not run: 
fp <- system.file("extdata", "lateformeeting.csv", package = "rrefine")
refine_upload(fp, project.name = "lfm")
refine_move_column("sleephours", index = 0, project.name = "lfm")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.