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.
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
[REVIEW] Upgrade pandas to 1.2 #7375
[REVIEW] Upgrade pandas to 1.2 #7375
Changes from 19 commits
155f10f
0ec247e
454ecf5
a1a928d
303c77d
18d1fb3
b727253
01afece
691d154
c7c47b5
d106b79
aea3313
9fdbfe7
27a782b
3cde2ef
9a3b51a
2f8fe18
7a534b0
81d9b5d
14e8c0e
c5b83a2
5e6855d
ea61733
d8ca966
8d079f0
d8ff534
a0637b9
b63ae03
c3c3e68
992b483
355e192
3942cf1
8d06667
032378d
dd842f3
9fe44cd
da1a3a3
e70686f
39ba07a
2cc496d
0bd3bba
3d44f5f
c1c2d96
19ae2f6
ae1b8c6
416bc92
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.
This seems really expensive to always be checking. What situations are we trying to handle here?
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.
Here we are handling a case where we'd need to allow setting a value in category to
np.nan
.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.
Do we actually need to handle
NaN
or should that be treated similar to every other value where it would be a dictionary entry? This is distinctly different thannull
.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.
Yep, while digging into this I came across this issue: #7446
I'll think about how to avoid having this check and fix the above issue..