我想在Juypter筆記本(在Kaggle中)繪製一個情節圖,並且代碼運行,但不渲染圖像。使用Plotly版本1.12.12和Python 3.5。輸出單元似乎只是隱藏起來。代碼簡單的圖形低於:Plotly在Juypter筆記本上Kaggle
# Imports
import plotly.plotly as py
import plotly.graph_objs as go
from plotly import tools
from plotly.offline import iplot, init_notebook_mode
init_notebook_mode(connected=True)
# Graph
iplot([{"x": [1, 2, 3], "y": [3, 1, 6]}])
我發現在以下鏈接一些意見:
https://community.plot.ly/t/offline-mode-in-jupyter-notebook-shows-blank-graphs/1860/22
仍然沒有能夠解決這個問題。有什麼建議?
謝謝你
RenS,你使用哪個版本的情節?我認爲1.12.12的更新是導致我的問題的原因。 –
我正在使用1.12.12 – Axis