View source: R/cto_dataset_delete.R
| cto_dataset_delete | R Documentation |
Functions to permanently remove data from the server.
cto_delete_dataset(): Permanently deletes a dataset and all its associated data.
This operation cannot be undone
cto_purge_dataset(): Removes all records from the dataset but
keeps the dataset definition (schema/ID) intact.
cto_dataset_delete(id)
cto_dataset_purge(id)
id |
String. The unique identifier of the dataset. |
A list confirming the operation status.
Other Dataset Management Functions:
cto_dataset_create(),
cto_dataset_download(),
cto_dataset_info(),
cto_dataset_list()
## Not run:
# 1. Delete dataset
cto_dataset_delete(id = "hh_data")
# 2. Purge dataset
cto_dataset_purge(id = "hh_data")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.