Plotly - Plotando Inline com o Jupyter Notebook

Neste capítulo, estudaremos como fazer plotagem em linha com o Jupyter Notebook.

Para exibir o gráfico dentro do notebook, você precisa iniciar o modo de bloco de notas do plotly da seguinte maneira -

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

Mantenha o resto do script como está e execute a célula do notebook pressionando Shift+Enter. O gráfico será exibido offline dentro do próprio 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")})

A saída do notebook Jupyter será como mostrado abaixo -

A saída do gráfico mostra um tool bar em top right. Ele contém botões para download comopng, zoom in and out, box and lasso, select and hover.