Skip to content

Commit 84461be

Browse files
committed
fix plotly rendering
1 parent 671d57d commit 84461be

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

data-science-for-esm/13-workshop-interactive-visualisation.ipynb

+4-12
Original file line numberDiff line numberDiff line change
@@ -496,28 +496,20 @@
496496
"metadata": {},
497497
"outputs": [],
498498
"source": [
499-
"import plotly.express as px"
499+
"import plotly.io as pio\n",
500+
"import plotly.express as px\n",
501+
"import plotly.offline as py"
500502
]
501503
},
502504
{
503505
"cell_type": "markdown",
504506
"metadata": {},
505507
"source": [
506508
":::{note}\n",
507-
"We need to set a non-default renderer, so that the interactive plots are also visible on the course's static website.\n",
509+
"We need to import `plotly.io` and `plotly.offline`, so that the interactive plots are also visible on the course's static website.\n",
508510
":::"
509511
]
510512
},
511-
{
512-
"cell_type": "code",
513-
"execution_count": null,
514-
"metadata": {},
515-
"outputs": [],
516-
"source": [
517-
"import plotly.io as pio\n",
518-
"pio.renderers.default = \"notebook\""
519-
]
520-
},
521513
{
522514
"cell_type": "markdown",
523515
"metadata": {},

data-science-for-esm/_config.yml

+5
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,8 @@ parse:
4747
- linkify
4848
- colon_fence
4949
- substitution
50+
51+
sphinx:
52+
config:
53+
html_js_files:
54+
- https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js

0 commit comments

Comments
 (0)