| delete_dataset {bigrquery} | R Documentation |
Deletes an existing dataset in a project
delete_dataset(project, dataset, deleteContents = FALSE)
project |
The project name, a string |
dataset |
The dataset to delete, a string |
deleteContents |
Whether to delete the tables if the dataset is not empty, a boolean |
Google API documentation: https://cloud.google.com/bigquery/docs/reference/v2/datasets/delete
Other datasets: get_dataset,
insert_dataset,
list_datasets, update_dataset
## Not run:
delete_dataset("publicdata", "shakespeare", deleteContents = TRUE)
delete_dataset("myproject", "emptydataset")
## End(Not run)