Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on July 20, 2018 10:00AM
Likes: 0
Replies: 2
Hi there,
Running a python Jupyter notebook I can render beautiful offline plot.ly charts. However, when I publish the notebook to a dashboard, those charts are no longer visible.
I can seem to publish the charts as individual insights using a static insight but I really like the idea of keeping it within the published notebook.
For example - try this in a notebook (assuming you have plotly installed in your python environment). It should work and show a pretty contour plot. Not publish that notebook on a dashboard. Neither the dashboard rendering or insight rendering show the graph - just a blank.
import dataiku
import plotly.graph_objs as go
import numpy as np
import plotly.offline as py
py.init_notebook_mode(connected=True)
x = np.random.randn(1000)
y = np.random.randn(1000)
fig = go.FigureWidget(
data=[
{'x': x, 'y': y, 'type': 'histogram2dcontour'}
]
)
py.iplot(fig, filename='histogram')
Screen grab of the notebook running -
Not quite so exciting screen grab of the insight...
Any ideas?
Many thanks
Theo