folder {crunch} | R Documentation |
Find and move entities to a new folder
Description
Find and move entities to a new folder
Usage
folder(x)
folder(x) <- value
Arguments
x |
For |
value |
For assignment, a character "path" to the folder: either a vector of nested folder names or a single string with nested folders separated by a delimiter ("/" default) |
Value
folder
returns the parent folder of x
, or NULL
if the x
is the root
level. folder<-
returns the
x
input, having been moved to the requested location.
See Also
Examples
## Not run:
ds <- loadDataset("Example survey")
folder(ds$income) <- "Demographics/Economic"
folder(ds$income)
## [1] "Demographics" "Economic"
## End(Not run)
[Package crunch version 1.30.4 Index]