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
{{ message }}
This repository has been archived by the owner on Jun 29, 2021. It is now read-only.
Currently, missing values in DataFrames (or DataFrames with column datatypes Union{Any, Missing}) cause errors in StatsMakie. What would be the best way to deal with this?
I think the best solution would be to use DataFrames.jl's integrated disallowmissing or dropmissing method, but that may cause unexpected behaviour (to the user).
The text was updated successfully, but these errors were encountered:
I don't think disallowmissing should be the first choice. missing values are part of Base Julia now, and they should be first-class citizens, treated mostly like NaNs.
Drop lines where one of the columns we use has a missing value (possibly with a warning)
Same as option 1. except when the users uses categorical axes (meaning, where under the hood we replace categories with numbers from 1 to n and add ticks to the axes based on categorical values), in which case missing should have its own category
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently,
missing
values in DataFrames (or DataFrames with column datatypesUnion{Any, Missing}
) cause errors in StatsMakie. What would be the best way to deal with this?I think the best solution would be to use DataFrames.jl's integrated
disallowmissing
ordropmissing
method, but that may cause unexpected behaviour (to the user).The text was updated successfully, but these errors were encountered: