createDataset {crunch} | R Documentation |
Create an empty dataset
Description
Use only if you're writing a function to create a Crunch dataset from a
custom data structure. If you have a data.frame
, just call
newDataset()
on it.
Usage
createDataset(name, body, ..., project = defaultCrunchProject())
Arguments
name |
character, the name to give the new Crunch dataset. This is required. |
body |
list correctly formatted metadata definition for a dataset. See the Crunch API documentation. |
... |
additional arguments for the POST to create the dataset, such as "description". |
project |
A |
Value
An object of class CrunchDataset.
See Also
[Package crunch version 1.31.0 Index]