matplotlib-在绘制时间序列中跳过无数据区间

matplotlib-在绘制时间序列中跳过无数据区间

主要参考:
https://blog.csdn.net/tpoy0099/article/details/49511907
https://blog.csdn.net/norsd/article/details/41020117

import numpy as np
import pandas as pd
from datetime import *
import matplotlib.pyplot as plt
import matplotlib.ticker asa mtk


# 一般性可用的方法:
# 输入 axis, 
# x轴数据(type为DF or list)
# y轴数据(type为DF or list)
def decorateAx(ax, xs, ys):
    def x_fmt_func(x, pos=None):
        idx = np.clip(int(x + 0.5), 0, len(xs) - 1)
        return xs[idx]
    idx_pxy = np.arange(len(xs))
    ax.plot(idx_pxy, ys, linewidth=1, linestyle="-")
    ax.plot(ax.get_xlim(), [0, 0], color="blue", linewidth=0.5, linestyle="--")
    ax.xaxis.set_major_formatter(mtk.FuncFormatter(x_fmt_func))
    ax.grid(True)
    return

df = pd.read_csv('./data.csv')
fig = plt.figure()
ax1 = fig.add_subplot(2,1,1)
ax2 = fig.add_subplot(2,1,2)
decorateAx(ax1, df.index, df['Pnl'].cumsum())
decorateAx(ax2, list(df.index)[-100:], df.loc[-100:, 'Pnl'].cumsum())

跳过无数据区间的时间序列图

  • 1
    点赞
  • 14
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值