Created
November 4, 2019 13:17
-
-
Save Ddedalus/32d934b5cacd784424e6fc1fe7bd7c4b to your computer and use it in GitHub Desktop.
Plotly disable interactive rendering
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import plotly.io as pio | |
| # see docs at https://plot.ly/python/renderers/ | |
| # render and display plots as png images | |
| pio.renderers.default = "png" | |
| # override the renderer for a specific figure | |
| fig.show(renderer="notebook_connected") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment