我想用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)
错误:
*:' datetime.date'不支持的操作数类型和' int'