data.item — remove()
Description
The remove() method of the item object removes the specified dataset from the notebook.
Signature
data.item(key).remove()Argument
key(string)- The name of the stored dataset to remove from the notebook.
Example
// delete the 'revenue' dataset
data.item('revenue').remove();