| insert_dataset {bigrquery} | R Documentation |
Creates a new dataset in a project
insert_dataset(project, dataset, ...)
project |
The project name, a string |
dataset |
The name of the dataset to create, a string |
... |
Additional arguments merged into the body of the
request. |
Google API documentation: https://cloud.google.com/bigquery/docs/reference/v2/datasets/insert
Other datasets: delete_dataset,
get_dataset, list_datasets,
update_dataset
## Not run:
insert_dataset("myproject", "new_dataset")
## End(Not run)