plotly basic example shows no plot in jupyter lab(plotly 基本示例显示 jupyter 实验室中没有绘图)
问题描述
我只是尝试在 jupyter notebook 中离线使用 plotly(使用 jupyter lab).docs 给出了这个例子:
I just tried to use plotly offline in a jupyter notebook (using jupyter lab). The docs gives this example:
import plotly
import plotly.graph_objs as go
plotly.offline.init_notebook_mode(connected=True)
plotly.offline.iplot({
"data": [go.Scatter(x=[1, 2, 3, 4], y=[4, 3, 2, 1])],
"layout": go.Layout(title="hello world")
})
我试过了,在 Edge 或 Firefox 中都没有显示图表.
在 notebook 中制作了一个输出单元格,但没有图表.
I tried it and there is no chart displayed, either in Edge or Firefox.
An output cell is made in the notebook, but there is no chart.
如果我使用 plotly.offline.plot 而不是 iplot,它会起作用.如果我使用传统的 jupyter notebook 而不是 jupyter lab,它就可以工作.
It works if I use plotly.offline.plot rather than iplot. It works if I use the traditional jupyter notebook rather than jupyter lab.
任何想法为什么它不显示?
Any ideas why it does not display?
这是情节版本 2.7.0.
It's plotly version 2.7.0.
推荐答案
你安装 Plotly JupyterLab 扩展了吗?没有它,它将无法内联工作.你可以在这里得到它:https://github.com/jupyterlab/jupyter-renderers/tree/master/packages/plotly-extension
Have you installed Plotly JupyterLab extension? It will not work inline without it. You can get it here: https://github.com/jupyterlab/jupyter-renderers/tree/master/packages/plotly-extension
或者直接通过终端安装:jupyter labextension install @jupyterlab/plotly-extension
or just install via terminal: jupyter labextension install @jupyterlab/plotly-extension
这篇关于plotly 基本示例显示 jupyter 实验室中没有绘图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:plotly 基本示例显示 jupyter 实验室中没有绘图
基础教程推荐
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 筛选NumPy数组 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01