7

下面的例子产生了一个可以用 显示的动画图形jupyter notebook,但是在jupyter-lab图形中没有显示出来。

%pylab inline
import plotly.express as px
gapminder = px.data.gapminder()
px.scatter(gapminder, x="gdpPercap", y="lifeExp", animation_frame="year", animation_group="country",
           size="pop", color="continent", hover_name="country",
           log_x=True, size_max=55, range_x=[100,100000], range_y=[25,90])

使用 plotly 4.0.0 和 plotly_express 0.4.0。

知道可能出了什么问题吗?

4

3 回答 3

10

对于 JupyterLab 支持,还有几个额外的安装步骤:https ://plot.ly/python/getting-started/#jupyterlab-support-python-35

编辑:我们已将我们的故障排除步骤整合到一个方便的指南中,网址为https://plotly.com/python/troubleshooting/

于 2019-07-25T19:44:25.010 回答
2

按照以下步骤在 jupyter notebook 中显示绘图,请按照以下链接查找有关以下命令及其用法的更多详细信息: JupyterLab 支持 plotely

  1. pip install jupyterlab "ipywidgets>=7.5"
  2. jupyter labextension install jupyterlab-plotly@4.14.3
  3. jupyter labextension install @jupyter-widgets/jupyterlab-manager
  4. jupyter lab
于 2021-04-16T20:59:02.807 回答
0

这是因为 Nbextension。在可配置的 nbextensions 中。您必须禁用jupyterlab-plotly/extensionplotlywidget/extension。之后重启笔记本。我希望它会奏效。这是禁用的图像

于 2021-07-08T06:10:30.417 回答