def test_plot_doy_heatmap1():
filename = abspath(join(testdir, 'plot_doy_heatmap1.png'))
if isfile(filename):
os.remove(filename)
periods = 5*24 # 5 days
index = pd.date_range('3/1/2016', periods=periods, freq='H')
data = np.random.rand(periods)
df = pd.DataFrame(data=data, index=index, columns=['A'])
plt.figure()
pecos.graphics.plot_doy_heatmap(df['A'])
plt.savefig(filename, format='png')
plt.close()
assert_true(isfile(filename))
评论列表
文章目录