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
Is your feature request related to a problem? Please describe. pandas.IntervalDtype supports passing subtype=None meaning "a general IntervalDtype" without specified left/right types (commonly occuring if someone calls dtype=interval). cudf.IntervalDtype, as a sublcass of cudf.StructDtype, requires a left/right type specified.
Describe the solution you'd like
Support cudf.IntervalDtype holding a None left/right type or have a callback e.g. cudf.IntervalDtype._subtype_from_data that passes the subtype from the column data upon construction.
Is your feature request related to a problem? Please describe.
pandas.IntervalDtype
supports passingsubtype=None
meaning "a general IntervalDtype" without specified left/right types (commonly occuring if someone callsdtype=interval
).cudf.IntervalDtype
, as a sublcass ofcudf.StructDtype
, requires a left/right type specified.Describe the solution you'd like
Support
cudf.IntervalDtype
holding aNone
left/right type or have a callback e.g.cudf.IntervalDtype._subtype_from_data
that passes the subtype from the column data upon construction.This is blocking #17978
Describe alternatives you've considered
Status quo
The text was updated successfully, but these errors were encountered: