在jupyter笔记本上无法通过github显示的图

时间:2020-05-27 21:57:56

标签: python github jupyter-notebook plotly

我有一个.ipynb文件,该文件具有一些在单元格末尾用fig.show()调用的可绘制图形。这是从他们的文档中提取的示例:

import plotly.graph_objects as go
import numpy as np

N = 1000
t = np.linspace(0, 10, 100)
y = np.sin(t)

fig = go.Figure(data=go.Scatter(x=t, y=y, mode='markers'))

fig.show()

当我在jupyter笔记本中运行此代码时,将显示交互式绘图,但是当我保存并提交更改时,交互式绘图不会通过github或https://nbviewer.jupyter.org/上的.ipynb查看器显示

Here is an example of the notebook file on my github

我怎样才能使交互式绘图显示在github中?

0 个答案:

没有答案