Skip to content

Commit

Permalink
hide Dask warnings on the plotting guides (#1423)
Browse files Browse the repository at this point in the history
  • Loading branch information
maximlt authored Sep 27, 2024
1 parent 6ce5d66 commit 942b14e
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 5 deletions.
21 changes: 20 additions & 1 deletion doc/user_guide/Plotting.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,30 @@
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"metadata": {
"tags": []
},
"source": [
"# Plotting"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"tags": [
"hide-cell"
]
},
"outputs": [],
"source": [
"# Cell hidden on the website (hide-cell in tags)\n",
"# https://github.com/holoviz/holoviews/pull/6391\n",
"import warnings\n",
"\n",
"warnings.filterwarnings(\"ignore\", message=\"When grouping with a length-1 list-like\", category=FutureWarning)"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down
25 changes: 23 additions & 2 deletions doc/user_guide/Plotting_with_Matplotlib.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,35 @@
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"metadata": {
"tags": []
},
"source": [
"# Plotting with Matplotlib"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"tags": [
"hide-cell"
]
},
"outputs": [],
"source": [
"# Cell hidden on the website (hide-cell in tags)\n",
"# https://github.com/holoviz/holoviews/pull/6391\n",
"import warnings\n",
"\n",
"warnings.filterwarnings(\"ignore\", message=\"When grouping with a length-1 list-like\", category=FutureWarning)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"metadata": {
"tags": []
},
"source": [
"This page demonstrates the use of the **Matplotlib** plotting backend, the equivalent page demonstrating the Plotly backend may be found [here](Plotting_with_Plotly.ipynb)\n",
"\n",
Expand Down
25 changes: 23 additions & 2 deletions doc/user_guide/Plotting_with_Plotly.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,35 @@
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"metadata": {
"tags": []
},
"source": [
"# Plotting with Plotly"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"tags": [
"hide-cell"
]
},
"outputs": [],
"source": [
"# Cell hidden on the website (hide-cell in tags)\n",
"# https://github.com/holoviz/holoviews/pull/6391\n",
"import warnings\n",
"\n",
"warnings.filterwarnings(\"ignore\", message=\"When grouping with a length-1 list-like\", category=FutureWarning)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"metadata": {
"tags": []
},
"source": [
"This page demonstrates the use of the **Plotly** plotting backend, the equivalent page demonstrating the Matplotlib backend may be found [here](Plotting_with_Matplotlib.ipynb)\n",
"\n",
Expand Down

0 comments on commit 942b14e

Please sign in to comment.