Skip to content

cervix_nuclei

A GeoDataframe of segmented nuclei of a cervical biopsy.

Note

Pairs with: cervix_tissue().

Examples:

>>> from histolytics.data import cervix_nuclei
>>> ax = cervix_nuclei().plot(column="class_name")
>>> ax.set_axis_off()

out

Source code in src/histolytics/data/fetch.py
def cervix_nuclei():
    """A GeoDataframe of segmented nuclei of a cervical biopsy.

    Note:
        Pairs with: `cervix_tissue()`.

    Examples:
        >>> from histolytics.data import cervix_nuclei
        >>> ax = cervix_nuclei().plot(column="class_name")
        >>> ax.set_axis_off()
    ![out](../../img/cervix_biopsy_nuc.png)
    """
    return _load(BASE_PATH / "cervix_biopsy_nuclei.parquet")