-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BUG: Don't parse NA-values in index when requested #18127
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
Conversation
@jreback : I agree with this suggestion. I could also deprecate the parameter in this PR as well? |
Codecov Report
@@ Coverage Diff @@
## master #18127 +/- ##
==========================================
- Coverage 91.28% 91.26% -0.02%
==========================================
Files 163 163
Lines 50127 50130 +3
==========================================
- Hits 45757 45752 -5
- Misses 4370 4378 +8
Continue to review full report at Codecov.
|
doc/source/whatsnew/v0.21.1.txt
Outdated
@@ -79,6 +79,7 @@ I/O | |||
|
|||
- Bug in class:`~pandas.io.stata.StataReader` not converting date/time columns with display formatting addressed (:issue:`17990`). Previously columns with display formatting were normally left as ordinal numbers and not converted to datetime objects. | |||
- Bug in :func:`read_csv` when reading a compressed UTF-16 encoded file (:issue:`18071`) | |||
- Bug in :func:`read_csv` when specifying null-value handling on index columns (:issue:`5239`) |
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.
maybe mention na_filter
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.
Yep, done.
minor comment. merge when pushed and on green. |
c75ffb6
to
fdb6ef3
Compare
All is green, so merging. |
Closes pandas-devgh-5239. (cherry picked from commit c176a3c)
The
na_filter
parameter wasn't being respected when being applied on values in the index.Closes #5239.