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
PR #17076 implements casting between strings and numeric values using the polars GPU backend. However polars optionally supports the strict kwarg when casting between types which nulls out data that can't be converted from one type to the other. We should be able to implement this as a scan of the data to produce a mask that we then use to scatter NA. For instance, we could check which strings correspond to integers using libcudf's is_integer method and produce a mask that way. This should be relevant for:
String to numeric
String to datetime
String to boolean
Integer to datetime
The text was updated successfully, but these errors were encountered:
PR #17076 implements casting between strings and numeric values using the polars GPU backend. However polars optionally supports the
strict
kwarg when casting between types which nulls out data that can't be converted from one type to the other. We should be able to implement this as a scan of the data to produce a mask that we then use to scatterNA
. For instance, we could check which strings correspond to integers using libcudf'sis_integer
method and produce a mask that way. This should be relevant for:The text was updated successfully, but these errors were encountered: