Skip to content

Commit

Permalink
Match current implementation of DataFrame.describe for datetime values.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Dec 2, 2021
1 parent f881890 commit 5111a71
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions python/cudf/cudf/utils/docutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,12 +216,12 @@ def wrapper(func):
dtype: datetime64[s]
>>> s.describe()
count 3
mean 2006-09-01 08:00:00.000000000
min 2000-01-01 00:00:00.000000000
25% 2004-12-31 12:00:00.000000000
50% 2010-01-01 00:00:00.000000000
75% 2010-01-01 00:00:00.000000000
max 2010-01-01 00:00:00.000000000
mean 2006-09-01T08:00:00.000000000
min 2000-01-01 00:00:00
25% 2004-12-31 12:00:00
50% 2010-01-01 00:00:00
75% 2010-01-01 00:00:00
max 2010-01-01 00:00:00
dtype: object
Describing a ``DataFrame``. By default only numeric fields are
Expand Down

0 comments on commit 5111a71

Please sign in to comment.