Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fix/time series interpolation is wrong 21351 #56515
New issue
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
Fix/time series interpolation is wrong 21351 #56515
Changes from 41 commits
ff6d12f
1593af0
db68c2d
dd8b8d3
a04a3a2
efbba10
0294464
537f8bf
901701c
4f78c75
a5bcd45
7d4b4ce
dbae717
05be840
0912249
49a7c4c
a5a7299
6a6fa88
4ebed74
0ee5b8d
b2bc373
6109102
d6af64a
2a86a27
9c90e23
4b2f3dc
d11c162
789c511
4f6d102
c0547b5
d6382f8
4e9a616
c655bf1
e916da9
eaa7e07
649bfa2
4cfbbf1
76794e3
6ad9b26
6555141
48850cc
8eea71c
7f957cf
51e95e0
12bdd90
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe this change was incorrect. Reverting this behavior change, it appears to me the rest of this PR can remain.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in the opposite case where the difference is empty, i think a the sort_index and
.loc
below (which makes a copy) can be avoidedThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jbrockmendel Can you please clarify? "in the opposite case where the difference is empty" --> then
missing_data_points_index
will be empty, so its length will be zero. In that case, the if-expression evaluates toFalse
, so that the loc/sort is indeed not executed. Maybe I am overlooking something.