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
Copy file name to clipboardExpand all lines: doc/source/timeseries.rst
+3-3
Original file line number
Diff line number
Diff line change
@@ -513,8 +513,9 @@ There are several time/date properties that one can access from ``Timestamp`` or
513
513
dayofyear,"The ordinal day of year"
514
514
weekofyear,"The week ordinal of the year"
515
515
week,"The week ordinal of the year"
516
-
dayofweek,"The day of the week with Monday=0, Sunday=6"
517
-
weekday,"The day of the week with Monday=0, Sunday=6"
516
+
dayofweek,"The numer of the day of the week with Monday=0, Sunday=6"
517
+
weekday,"The number of the day of the week with Monday=0, Sunday=6"
518
+
weekday_name,"The name of the day in a week (ex: Friday)"
518
519
quarter,"Quarter of the date: Jan=Mar = 1, Apr-Jun = 2, etc."
519
520
days_in_month,"The number of days in the month of the datetime"
520
521
is_month_start,"Logical indicating if first day of month (defined by frequency)"
@@ -523,7 +524,6 @@ There are several time/date properties that one can access from ``Timestamp`` or
523
524
is_quarter_end,"Logical indicating if last day of quarter (defined by frequency)"
524
525
is_year_start,"Logical indicating if first day of year (defined by frequency)"
525
526
is_year_end,"Logical indicating if last day of year (defined by frequency)"
526
-
weekday_name,"The name of day in a week (ex: Friday)"
527
527
528
528
Furthermore, if you have a ``Series`` with datetimelike values, then you can access these properties via the ``.dt`` accessor, see the :ref:`docs <basics.dt_accessors>`
0 commit comments