【发布时间】:2014-01-27 20:23:57
【问题描述】:
此代码在 Pandas 数据框中绘制特定列并提供倍数:
area_tabs=['12']
nrows = int(math.ceil(len(area_tabs) / 2.))
figlen=nrows*7 #adjust the figure size height to be sized to the number of rows
plt.rcParams['figure.figsize'] = 25,figlen
fig, axs = plt.subplots(nrows, 2, sharey=False)
for ax, area_tabs in zip(axs.flat, area_tabs):
actdf, aname = get_data(area_tabs)
lastq,fcast_yr,projections,yrahead,aname,actdf,merged2,mergederrs,montdist,ols_test,mergedfcst=do_projections(actdf)
mergedfcst.tail(12).plot(ax=ax, title='Area: {0} Forecast for 2014 {1} \
vs. 2013 actual of {2}'.format(unicode(aname),unicode(merged2['fcast'] [-1:].values),unicode(merged2['Units'][-2:-1].values)))
使用大致如下的数据框:以日期为索引
Units fcast
date
2014-01-01 384 302
2014-02-01 NaN 343
2014-03-01 NaN 396
2014-04-01 NaN 415
2014-05-01 NaN 483
2014-06-01 NaN 513
我得到一个看起来像这样的情节: 水平背景网格(单位)显示良好,但我不知道如何显示垂直每月网格。我怀疑它可能被视为未成年人?但即使那样也看不到在哪里指定它到pyplot/matplot?
【问题讨论】:
-
len(area_tabs) = 1时你制作两个轴有什么原因吗? -
是的,因为这是测试代码,最终会有一系列标签 (20+)
标签: python matplotlib pandas