Skip to content

Commit

Permalink
changed plotting backend to plotly-static
Browse files Browse the repository at this point in the history
  • Loading branch information
leoniewgnr committed Apr 27, 2023
1 parent 1683b2c commit 6a53b58
Show file tree
Hide file tree
Showing 14 changed files with 13,962 additions and 19,887 deletions.
5,499 changes: 5,086 additions & 413 deletions docs/source/how-to-guides/application-examples/energy_hospital_load.ipynb

Large diffs are not rendered by default.

9,214 changes: 8,389 additions & 825 deletions docs/source/how-to-guides/application-examples/energy_solar_pv.ipynb

Large diffs are not rendered by default.

Large diffs are not rendered by default.

670 changes: 195 additions & 475 deletions docs/source/quickstart.ipynb

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/source/tutorials/tutorial01.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@
"\n",
"# Create a NeuralProphet model with default parameters\n",
"m = NeuralProphet()\n",
"# Use matplotlib for plotting (as plotly does not work in saved notebooks, see #1235)\n",
"m.set_plotting_backend(\"matplotlib\")\n",
"# Use static plotly in notebooks\n",
"m.set_plotting_backend(\"plotly-static\")\n",
"\n",
"# Fit the model on the dataset (this might take a bit)\n",
"metrics = m.fit(df)"
Expand Down
2 changes: 1 addition & 1 deletion docs/source/tutorials/tutorial02.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
" weekly_seasonality=False,\n",
" daily_seasonality=False,\n",
")\n",
"m.set_plotting_backend(\"matplotlib\") # Use matplotlib due to #1235\n",
"m.set_plotting_backend(\"plotly-static\")\n",
"metrics = m.fit(df)\n",
"forecast = m.predict(df)\n",
"m.plot(forecast)"
Expand Down
2,797 changes: 17 additions & 2,780 deletions docs/source/tutorials/tutorial03.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/source/tutorials/tutorial04.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
" weekly_seasonality=True,\n",
" daily_seasonality=True,\n",
")\n",
"m.set_plotting_backend(\"matplotlib\") # Use matplotlib due to #1235\n",
"m.set_plotting_backend(\"plotly-static\")\n",
"metrics = m.fit(df)\n",
"forecast = m.predict(df)\n",
"m.plot(forecast)"
Expand Down
7,394 changes: 60 additions & 7,334 deletions docs/source/tutorials/tutorial05.ipynb

Large diffs are not rendered by default.

3,838 changes: 53 additions & 3,785 deletions docs/source/tutorials/tutorial06.ipynb

Large diffs are not rendered by default.

60 changes: 17 additions & 43 deletions docs/source/tutorials/tutorial07.ipynb

Large diffs are not rendered by default.

43 changes: 9 additions & 34 deletions docs/source/tutorials/tutorial08.ipynb

Large diffs are not rendered by default.

134 changes: 6 additions & 128 deletions docs/source/tutorials/tutorial09.ipynb

Large diffs are not rendered by default.

Loading

0 comments on commit 6a53b58

Please sign in to comment.