📜  在 jupyter 中未显示 plotly - Python (1)

📅  最后修改于: 2023-12-03 14:50:59.256000             🧑  作者: Mango

在 Jupyter 中未显示 Plotly - Python

如果在 Jupyter 中使用 Plotly 时未能显示图形,可以尝试以下步骤:

步骤一:安装 Plotly

首先,请确认您已经安装了 Plotly。您可以使用以下命令安装:

!pip install plotly

如果您已成功安装 Plotly,则可以开始使用它。否则,请安装它。

步骤二:导入必要的模块

在 Jupyter 中使用 Plotly 时,需要导入必要的模块:

import plotly.graph_objs as go
from plotly.offline import iplot, init_notebook_mode
init_notebook_mode(connected=True)
步骤三:配置 Plotly 显示

在 Jupyter 中,我们需要更改 Plotly 的配置,以使其在 Notebook 中正确显示。这可以通过以下代码完成:

import IPython
display_html('<script type="text/javascript"> require.config({ "baseUrl": "https://cdn.plot.ly/plotly-1.3.0b3.min.js" }); </script>', raw=True)
步骤四:在 Notebook 中显示图形

完成了以上步骤后,您可以开始在 Notebook 中使用 Plotly 绘制图形了。例如:

import numpy as np

# 创建随机数据,并创建散点图
x = np.random.randn(200)
y = np.random.randn(200)
data = [go.Scatter(x=x, y=y, mode='markers')]

# 绘制图形
iplot(data)

如果您已成功遵循以上步骤,您应该能够在 Jupyter Notebook 中看到 Plotly 图形了。