matplotlib箭头与日期时间?

时间:2016-06-20 01:41:06

标签: matplotlib

我想用x比例绘制一个数字是日期。 虽然情节contourf已完成,但quiver却错了。

代码:

import matplotlib.pyplot as plt
%matplotlib inline
import numpy as np
import datetime

dates = np.arange('2010-01-01', '2016-01-01', type='datetime64[D]').astype(object)
y = np.arange(10)
u = np.random.rand(y.size * len(times)).reshape(len(times), y.size)
v = np.random.rand(y.size * len(times)).reshape(len(times), y.size)

# now plot contourf, it worked.
plt.contourf(dates, y, u.T)
# plot quiver , error!!!
plt.quiver(dates, y, u.T, v.T)

enter image description here

错误:

  

*:' datetime.date'不支持的操作数类型和' int'

0 个答案:

没有答案