You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Setting na_values = [], keep_default_na = False seems to be the way to go to read data with string columns. (The default behaviour is to stay according to a comments in issue #15669.) However, if the data also contains number columns the user may want to process NaNs is those columns, for example:
| col1 | col2
-- | ---- | ----
0 | 1.23 | NA
1 | NA | NB
The parameters should be extended so that one can specify the NaN treatment for each column, or better for subsets of columns. I see that @HHest also made this suggesting in a comment in issue #15669.
The text was updated successfully, but these errors were encountered:
Setting na_values = [], keep_default_na = False seems to be the way to go to read data with string columns. (The default behaviour is to stay according to a comments in issue #15669.) However, if the data also contains number columns the user may want to process NaNs is those columns, for example:
The parameters should be extended so that one can specify the NaN treatment for each column, or better for subsets of columns. I see that @HHest also made this suggesting in a comment in issue #15669.
The text was updated successfully, but these errors were encountered: