collection.delete([
  "0195c87a-49f6-5ffa-e3cb-92215d057ea6",
  "0195c87b-bd0e-3998-05cf-af6538f34957",
])
def Collection.delete(datapoints: DatapointIDs) -> int

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

datapoints
DatapointIDs

Datapoint IDs to delete from the collection.

Supported DatapointIDs types are.

  • A pandas.DataFrame containing an id 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-in UUID 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

NotFoundError
No such collection: Non-existent-Collection

One of the data points is not found in the collection. If any of the data points are not found, nothing will be deleted.

ValueError
Invalid UUID

One of the specified ids is not a valid UUID