Plotly - 使用 Jupyter Notebook 进行内联绘图



在本章中,我们将学习如何使用 Jupyter Notebook 进行内联绘图。

若要在 notebook 内显示绘图,你需要按照以下方法启动 plotly 的 notebook 模式 −

from plotly.offline import init_notebook_mode
init_notebook_mode(connected = True)

保留其余脚本原样,然后按 Shift+Enter 运行 notebook 单元格。图形将离线显示在 notebook 内部。

import plotly
plotly.tools.set_credentials_file(username = 'lathkar', api_key = '************')
from plotly.offline import iplot, init_notebook_mode
init_notebook_mode(connected = True)

import plotly
import plotly.graph_objs as go
import numpy as np
import math #needed for definition of pi

xpoints = np.arange(0, math.pi*2, 0.05)
ypoints = np.sin(xpoints)
trace0 = go.Scatter(
   x = xpoints, y = ypoints
)
data = [trace0]
plotly.offline.iplot({ "data": data,"layout": go.Layout(title="Sine wave")})

Jupyter notebook 输出将如下所示 −

Jupyter Notebook

绘图输出显示 右上角工具栏。它包含用于以 png 下载放大和缩小框和套索选择悬停 的按钮。

Tool Bar
广告