From b7d94058304f280b619b25e2bff88d111362a08c Mon Sep 17 00:00:00 2001 From: Andrew <15331990+ahuang11@users.noreply.github.com> Date: Tue, 11 Jun 2024 15:29:01 -0700 Subject: [PATCH] Change note I think it's more impressive if it works on the website --- overview/xarray-in-45-min.ipynb | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/overview/xarray-in-45-min.ipynb b/overview/xarray-in-45-min.ipynb index 867561db..6686447f 100644 --- a/overview/xarray-in-45-min.ipynb +++ b/overview/xarray-in-45-min.ipynb @@ -1106,16 +1106,7 @@ "source": [ "import hvplot.xarray\n", "\n", - "ds.air.hvplot(groupby=\"time\", clim=(270, 300), widget_location='bottom')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "```{note}\n", - "The time slider will only work if you're executing the notebook, rather than viewing the website\n", - "```" + "ds.isel(time=slice(0, 10)).air.hvplot(groupby=\"time\", clim=(270, 300), widget_location='bottom', dynamic=False)" ] }, {