在没有在线情节帐户的情况下使用plotly

时间:2016-06-10 10:27:31

标签: python charts plotly

是否可以使用plotly库在python中创建图表而无需在线的图表帐户?我认为代码是开源https://github.com/plotly/plotly.py。我想知道我们是否可以在没有在线帐户的情况下使用它。

4 个答案:

答案 0 :(得分:28)

是的,可以做到。拥有plotly帐户的唯一目的是在您的plotly帐户中托管图表。

Plotly Offline允许您离线创建图表并在本地保存。您可以将数据和图表保留在本地系统中,而不是将图表保存到服务器。

答案 1 :(得分:8)

您可以在没有图表帐户的情况下离线工作。 情节版本应为1.9.x系列或更高。

import numpy as np
from plotly import __version__
from plotly.offline import download_plotlyjs, init_notebook_mode, plot,iplot
print (__version__) # requires version >= 1.9.0

#Always run this the command before at the start of notebook
init_notebook_mode(connected=True)
import plotly.graph_objs as go

x=np.array([2,5,8,0,2,-8,4,3,1])
y=np.array([2,5,8,0,2,-8,4,3,1])


data = [go.Scatter(x=x,y=y)]
fig = go.Figure(data = data,layout = go.Layout(title='Offline Plotly Testing',width = 800,height = 500,
                                           xaxis = dict(title = 'X-axis'), yaxis = dict(title = 'Y-axis')))


plot(fig,show_link = False)

您的离线情节库已设置完毕。 参考:Plotly Offline Tutorial

This the offline graph that is created and you check the there is no online url because the graph is stored in local directory

答案 2 :(得分:0)

离线软件包非常适合非订阅用户,但图形质量明显低于在线版本。如果您要保存图形并与他人共享,这可能是个问题。

答案 3 :(得分:0)

您可以使用:

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

要离线使用Plotly。