Plotly Test

Embedded plotly graph with Nikola notebook

In [1]:
import plotly.graph_objects as go
import plotly
In [2]:
%matplotlib notebook
In [3]:
data = go.Scatter(
                    x=[1,2,3,4],
                    y=[1,2,3,4],
                    )
In [4]:
fig = go.Figure(data)
In [6]:
fig
In [ ]:
 

Comments

Comments powered by Disqus