skbio.metadata.SampleMetadata.filter_ids#
- SampleMetadata.filter_ids(ids_to_keep)[source]#
Filter metadata by IDs.
- Parameters:
- ids_to_keepiterable of str
IDs that should be retained in the filtered
Metadata
object. If any IDs in ids_to_keep are not contained in thisMetadata
object, aValueError
will be raised. The filteredMetadata
object will retain the same relative ordering of IDs in thisMetadata
object. Thus, the ordering of IDs in ids_to_keep does not determine the ordering of IDs in the filteredMetadata
object.
- Returns:
- Metadata
The metadata filtered by IDs.
See also