Python绘制累积图(matplotlib)

时间:2010-10-06 06:08:09

标签: python matplotlib plot

我没有使用matplotlib,但看起来它是绘制图的主库。我想绘制CPU使用情节。我每分钟都有后台进程记录(date,min_load,avg_load,max_load)。日期可以是时间戳或很好的格式化日期。

我想在同一个图上绘制显示min_load,avg_load和max_load的图表。在X轴上,我想根据有多少数据来计算分钟,小时,天,周。

可能存在差距。假设受监控的进程崩溃,并且由于没有人重新启动它,可能会有几个小时的间隙。

我的想象示例:http://img714.imageshack.us/img714/2074/infoplot1.png 这并没有说明差距,但在这种情况下读数会变为0。

我正在玩matplotlib现在我也会尝试分享我的结果。这就是数据的样子:

1254152292;0.07;0.08;0.13
1254152352;0.04;0.05;0.10
1254152412;0.09;0.10;0.17
1254152472;0.28;0.29;0.30
1254152532;0.20;0.20;0.21
1254152592;0.09;0.12;0.15
1254152652;0.09;0.12;0.14
1254152923;0.13;0.12;0.30
1254152983;0.13;0.25;0.32

Or it could look something like this:
Wed Oct 06 08:03:55 CEST 2010;0.25;0.30;0.35
Wed Oct 06 08:03:56 CEST 2010;0.00;0.01;0.02
Wed Oct 06 08:03:57 CEST 2010;0.00;0.01;0.02
Wed Oct 06 08:03:58 CEST 2010;0.00;0.01;0.02
Wed Oct 06 08:03:59 CEST 2010;0.00;0.01;0.02
Wed Oct 06 08:04:00 CEST 2010;0.00;0.01;0.02
Wed Oct 06 08:04:01 CEST 2010;0.25;0.50;0,75
Wed Oct 06 08:04:02 CEST 2010;0.00;0.01;0.02

-David

1 个答案:

答案 0 :(得分:2)

尝试:

from matplotlib.dates import strpdate2num, epoch2num
import numpy as np
from pylab import figure, show, cm

datefmt = "%a %b %d %H:%M:%S CEST %Y"
datafile = "cpu.dat"

def parsedate(x):
    global datefmt
    try:
        res = epoch2num( int(x) )
    except:
        try:
            res = strpdate2num(datefmt)(x)
        except:
            print("Cannot parse date ('"+x+"')")
            exit(1)
    return res

# parse data file
t,a,b,c = np.loadtxt(
    datafile, delimiter=';',
    converters={0:parsedate},
    unpack=True)

fig = figure()
ax = fig.add_axes((0.1,0.1,0.7,0.85))
# limit y axis to 0
ax.set_ylim(0);

# colors
colors=['b','g','r']
fill=[(0.5,0.5,1), (0.5,1,0.5), (1,0.5,0.5)]

# plot
for x in [c,b,a]:
    ax.plot_date(t, x, '-', lw=2, color=colors.pop())
    ax.fill_between(t, x, color=fill.pop())

# legend
ax.legend(['max','avg','min'], loc=(1.03,0.4), frameon=False)

fig.autofmt_xdate()
show()

这解析了“cpu.dat”文件中的行。日期由parsedate函数解析。

Matplotlib应该找到x轴的最佳格式。

修改:添加了图例和fill_between(可能还有更好的方法)。