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
SO the value is correct
In [2]: pd.DatetimeIndex(['2017-01-01 23:59:59.999999999']) Out[2]: DatetimeIndex(['2017-01-01'], dtype='datetime64[ns]', freq=None) In [3]: pd.DatetimeIndex(['2017-01-01 23:59:59.999999999']).values Out[3]: array(['2017-01-01T23:59:59.999999999'], dtype='datetime64[ns]')
and lower precision is ok
In [4]: pd.DatetimeIndex(['2017-01-01 23:59:59.999999']) Out[4]: DatetimeIndex(['2017-01-01 23:59:59.999999'], dtype='datetime64[ns]', freq=None)
but the ns is causing issues.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
SO the value is correct
and lower precision is ok
but the ns is causing issues.
The text was updated successfully, but these errors were encountered: