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
we allow column that is to be converted to column names to be only string or Symbol. This is, in particular, problematic with CategoricalArrays.jl.
What do you think we should do with it? Should we just automatically convert any non-string or symbol value to string or e.g. add strict::Bool=true kwarg, which by default is the current behavior, but if strict=false we perform conversion to string?
The text was updated successfully, but these errors were encountered:
Maybe we could first try converting to string, as that's quite safe? Then if users pass strict=false we could call string on the values, which would be more risky to do by default.
@nalimilan - currently in
DataFrames.jl/src/abstractdataframe/reshape.jl
Line 645 in 2f5536e
we allow column that is to be converted to column names to be only string or
Symbol
. This is, in particular, problematic with CategoricalArrays.jl.What do you think we should do with it? Should we just automatically convert any non-string or symbol value to string or e.g. add
strict::Bool=true
kwarg, which by default is the current behavior, but ifstrict=false
we perform conversion to string?The text was updated successfully, but these errors were encountered: