We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In [11]: t = pd.to_datetime(['2000-01-01T00:00', 'NaT']).values.astype('datetime64[us]') In [12]: pd.DatetimeIndex(t) OutOfBoundsDatetime: Out of bounds nanosecond timestamp: 294247-01-09 19:59:05 In [13]: pd.to_datetime(t) Out[13]: <class 'pandas.tseries.index.DatetimeIndex'> [2000-01-01, NaT] Length: 2, Freq: None, Timezone: None
The second line should give the same result as the last one.
The text was updated successfully, but these errors were encountered:
this is more of a case of DatetimeIndex should have less code in its new method (and just defer to pd.to_datetime).
DatetimeIndex
pd.to_datetime
Sorry, something went wrong.
6cae23d
Successfully merging a pull request may close this issue.
The second line should give the same result as the last one.
The text was updated successfully, but these errors were encountered: