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
tdf = pd.DataFrame({'a': np.arange(10), 'b': np.arange(10) + 5}, index=pd.date_range('20160119 09:00', freq='5T', periods=10, tz='US/Eastern')) new_values = tdf.sample(2)['b'] + 100 tdf.loc[new_values.index, 'b'] = new_values.values
This fails with KeyError: "['2016-01-19T14:00:00.000000000+0000' '2016-01-19T14:05:00.000000000+0000'] not in index
KeyError: "['2016-01-19T14:00:00.000000000+0000' '2016-01-19T14:05:00.000000000+0000'] not in index
This used to work. Not sure which version broke it.
The text was updated successfully, but these errors were encountered:
this is a dupe of #12050, already fixed in master and will be in 0.18.0
thanks for the report
Sorry, something went wrong.
No branches or pull requests
This fails with
KeyError: "['2016-01-19T14:00:00.000000000+0000' '2016-01-19T14:05:00.000000000+0000'] not in index
This used to work. Not sure which version broke it.
The text was updated successfully, but these errors were encountered: