Skip to content

Instantly share code, notes, and snippets.

@korakot
korakot / colab_plotly.py
Last active September 3, 2020 18:58
using plotly (and other JS) with colab
import plotly
plotly.io.renderers.default = 'colab'
# example
import plotly.graph_objects as go
fig = go.Figure( go.Scatter(x=[1,2,3], y=[1,3,2] ) )
fig.show()