datetime64 タイプの配列があります。
dates = np.datetime64(['2010-10-17', '2011-05-13', "2012-01-15"])
np.array of years を取得するためだけに各要素をループするよりも良い方法はありますか:
years = f(dates)
#output:
array([2010, 2011, 2012], dtype=int8) #or dtype = string
安定した numpy バージョン 1.6.2 を使用しています。