在 Jupyter Lab 中使用 plotly

博客分类: 技术 阅读次数: comments

在 Jupyter Lab 中使用 plotly

直接使用无法在 jupyter-notebook 中显示图窗,安装插件jupyterlab-plotly后可用。

安装[^ 1]

conda install nodejs
jupyter labextension install jupyterlab-plotly

使用

import plotly.graph_objects as go
fig = go.Figure(data=go.Bar(y=[2, 3, 1]))
fig.show()

output