Plotly绘制时间序列图实战:简单时序图时间范围限制的时序图

Posted Data+Science+Insight

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Plotly绘制时间序列图实战:简单时序图时间范围限制的时序图相关的知识,希望对你有一定的参考价值。

Plotly绘制时间序列图实战:简单时序图、时间范围限制的时序图

# 简单时间序列图;

import plotly as py
import plotly.graph_objs as go

from datetime import datetime

# ----------pre def
pyplt = py.offline.plot

# ----------code
x_datetime = [datetime(year=2013, month=10, day=4),
              datetime(year=2013, month=11, day=5),
              datetime(year=2013, month=12, day=6)]
x_string = [\'2013-10-04\', \'2013-11-05\', \'2013-12-06\']

trace_datetime = go.Scatter(x=x_datetime, y=[1, 3, 6],name=\'trace_datetime\')
trace_string = go.Scatter(x=x_string, y=[2, 4, 7],name=\'trace_string\')
data = [trace_datetime, trace_string]
pyplt(data, filename=\'time_series.html\')

以上是关于Plotly绘制时间序列图实战:简单时序图时间范围限制的时序图的主要内容,如果未能解决你的问题,请参考以下文章

R语言使用plotly绘制3D散点图实战

R语言时间序列(time series)分析实战:时序数据加载绘制时间序列图

使用 Plotly 绘制动画 3D 曲面图

python数据可视化(matplotlib,seaborn,plotly)

Plotly:如何在子图上绘制烛台图?

Python绘制时间序列数据的时序图自相关图和偏自相关图