tilebox.datasets
Collection.delete
Delete datapoints from the collection.
Datapoints are identified and deleted by their ids.
You need to have write permission on the collection to be able to delete datapoints.
Parameters
Datapoint IDs to delete from the collection.
Supported DatapointIDs
types are.
- A
pandas.DataFrame
containing anid
column. - A
pandas.Series
containing datapoint IDs. - An
xarray.Dataset
containing an “id” variable. - An
xarray.DataArray
containing datapoint IDs. - A
numpy.ndarray
containing datapoint IDs. - A
Collection[UUID]
containing datapoint IDs as python built-inUUID
objects, e.g.list[UUID]
. - A
Collection[str]
containing datapoint IDs as strings, e.g.list[str]
.
Returns
The number of datapoints that were deleted.
Errors
One of the data points is not found in the collection. If any of the data points are not found, nothing will be deleted.
One of the specified ids is not a valid UUID
Was this page helpful?