diff --git a/docs/tutorials/work_with_lsdb.ipynb b/docs/tutorials/work_with_lsdb.ipynb index c3fed88..77369fd 100644 --- a/docs/tutorials/work_with_lsdb.ipynb +++ b/docs/tutorials/work_with_lsdb.ipynb @@ -42,7 +42,7 @@ "# %pip install nested-dask\n", "\n", "# Comment the following line to skip dependencies installation\n", - "%pip install --quiet lsdb aiohttp light-curve matplotlib" + "%pip install --quiet lsdb==0.3.0 aiohttp light-curve matplotlib" ] }, { @@ -439,7 +439,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", - "version": "3.10.11" + "version": "3.10.14" } }, "nbformat": 4, diff --git a/src/nested_dask/core.py b/src/nested_dask/core.py index 8462662..e14a1e0 100644 --- a/src/nested_dask/core.py +++ b/src/nested_dask/core.py @@ -121,6 +121,11 @@ def __setitem__(self, key, value): return super().__setitem__(key, value) + def _repr_html_(self): + # following dask-geopandas lead + output = super()._repr_html_() + return output.replace("Dask DataFrame Structure", "Nested-Dask NestedFrame Structure") + @classmethod def from_pandas( cls,