We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Resulting in 1970 datetimes when using eg datetime64[D] resolution (splitted from #10408):
datetime64[D]
In [46]: df=pd.DataFrame({'c':pd.Timestamp('2010-10-01')}, index=range(5)) In [47]: df Out[47]: c 0 2010-10-01 1 2010-10-01 2 2010-10-01 3 2010-10-01 4 2010-10-01 In [48]: df.loc[0:2,'c'] = np.datetime64('2010-10-12') In [49]: df Out[49]: c 0 1970-01-01 00:00:00.000014894 1 1970-01-01 00:00:00.000014894 2 1970-01-01 00:00:00.000014894 3 2010-10-01 00:00:00.000000000 4 2010-10-01 00:00:00.000000000
The text was updated successfully, but these errors were encountered:
PR #10644
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Resulting in 1970 datetimes when using eg
datetime64[D]
resolution (splitted from #10408):The text was updated successfully, but these errors were encountered: