美文网首页
Plotly 绘图神器使用说明

Plotly 绘图神器使用说明

作者: 馬走日 | 来源:发表于2018-06-03 12:11 被阅读68次
  • 在线绘图
import plotly.plotly as py
import plotly.graph_objs as go
py.sign_in('Marion', '2qdyfjyr7o')   #  plotly网站的用户名和API

trace = go.Bar(x=[2, 4, 6], y= [10, 12, 15])
data = [trace]
layout = go.Layout(title='A Simple Plot', width=800, height=640)
fig = go.Figure(data=data, layout=layout)

py.plot(fig, filename="a-simple-plot")
# py.image.save_as(fig, filename='a-simple-plot.png')
  • 离线绘图
import plotly.offline as py
import plotly.graph_objs as go

trace = go.Box(
    x=[1, 2, 3, 4, 5, 6, 7]
)
data = [trace]
py.plot(data)  # 离线方式使用:offline

相关文章

网友评论

      本文标题:Plotly 绘图神器使用说明

      本文链接:https://www.haomeiwen.com/subject/ygkjsftx.html