Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
pandas.DatetimeIndexからに変換する方法はnumpy.datetime64?
pandas.DatetimeIndex
numpy.datetime64
私は得る:
>>> type(df.index.to_datetime()) Out[56]: pandas.tseries.index.DatetimeIndex
安全ですnumpy.array(datetimeindex,dtype=numpy.datetime64)か?
numpy.array(datetimeindex,dtype=numpy.datetime64)
内部のデータはdtypedatetime64です(datetime64[ns]正確には)。valuesインデックスの属性を取得するだけです。ナノ秒単位になることに注意してください。
datetime64
datetime64[ns]
values
私はこれをします:-
new_array = np.array(df.index.to_pydatetime(), dtype=numpy.datetime64)
メソッドを使用しto_pydatetime()ます。
to_pydatetime()