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
Currently Arrow::Array#to_narray raises an error when the receiver array has nulls.
I'd like to make this method to fill all the nulls by a specific value.
My API proposal is here:
nary=ary.to_narray(fillna: 0)# filling nulls by 0nary=ary.to_narray(fillna: Float::NAN)# filling nulls by NaN
The text was updated successfully, but these errors were encountered:
Currently
Arrow::Array#to_narray
raises an error when the receiver array has nulls.I'd like to make this method to fill all the nulls by a specific value.
My API proposal is here:
The text was updated successfully, but these errors were encountered: