Skip to content

hgsc_nuclei_wsi

A GeoDataframe of segmented nuclei of a HGSC WSI.

Note

Pairs with: hgsc_tissue_wsi().

Examples:

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

out

Source code in src/histolytics/data/fetch.py
def hgsc_nuclei_wsi():
    """A GeoDataframe of segmented nuclei of a HGSC WSI.

    Note:
        Pairs with: `hgsc_tissue_wsi()`.

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