Source code for edo.operators.util

""" A collection of functions for use across several operators. """


[docs]def get_family_counts(metadata, families): """ Get the number of instances in `metadata` that belong to each family in `families`. """ return { family: sum([pdf.family is family for pdf in metadata]) for family in families }