-
Notifications
You must be signed in to change notification settings - Fork 8
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
Add missing value handling options #58
Comments
how about: I think we should use as policies (identified by strings), but the key does not need to be verbose to include _policy |
Yes, the shorter the better! |
Maybe missing_values=None? |
In the case where the user wants to extract five variables from the data and just one of them is missing for a given row, would |
What other values than None could we specify for |
I prefer option 2 |
Currently
read_bufr
does not offer control over missing values during the extraction and we have to filter the resulting Pandas dataframe to remove them.Option 1
Add option
missing_value_policy
with the following values: "include", ignore" (default="include")Option 2
Add option
skip_missing
as a bool (default=False)Option 3
Add option
skip_na_values
as a bool (default=False)The text was updated successfully, but these errors were encountered: