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 array with timedelta & datetime types too have NaT as a null value, so this is a feature request to change our <NA> to NaT just for these two types. Also, there are no other null values possible for these type and they don't have a corresponding nullable dtype.
Describe the solution you'd like
Change repr from <NA> to NaT for timedelta64 & datetime64 dtypes.
The text was updated successfully, but these errors were encountered:
Resolves: #13867
This PR:
- [x] Changes all repr code of `datetime` & `timdelta` types to switch to represent null values as `NaT` from `<NA>`.
- [x] Changes Scalar getitem to return `cudf.NaT` instead of `cudf.NA`
Authors:
- GALI PREM SAGAR (https://github.com/galipremsagar)
Approvers:
- Bradley Dice (https://github.com/bdice)
URL: #13868
Is your feature request related to a problem? Please describe.
Pandas array with
timedelta
&datetime
types too haveNaT
as a null value, so this is a feature request to change our<NA>
toNaT
just for these two types. Also, there are no other null values possible for these type and they don't have a corresponding nullable dtype.Describe the solution you'd like
Change repr from
<NA>
toNaT
fortimedelta64
&datetime64
dtypes.The text was updated successfully, but these errors were encountered: