File tree 3 files changed +14
-1
lines changed
3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
223
223
-i " pandas.Timestamp.fromordinal SA01" \
224
224
-i " pandas.Timestamp.fromtimestamp PR01,SA01" \
225
225
-i " pandas.Timestamp.hour GL08" \
226
- -i " pandas.Timestamp.isoweekday SA01" \
227
226
-i " pandas.Timestamp.max PR02" \
228
227
-i " pandas.Timestamp.microsecond GL08" \
229
228
-i " pandas.Timestamp.min PR02" \
Original file line number Diff line number Diff line change @@ -441,6 +441,13 @@ class NaTType(_NaT):
441
441
442
442
Monday == 1 ... Sunday == 7.
443
443
444
+ See Also
445
+ --------
446
+ Timestamp.weekday : Return the day of the week with Monday=0, Sunday=6.
447
+ Timestamp.isocalendar : Return a tuple containing ISO year, week number
448
+ and weekday.
449
+ datetime.date.isoweekday : Equivalent method in datetime module.
450
+
444
451
Examples
445
452
--------
446
453
>>> ts = pd.Timestamp('2023-01-01 10:00:00')
Original file line number Diff line number Diff line change @@ -2775,6 +2775,13 @@ default 'raise'
2775
2775
2776
2776
Monday == 1 ... Sunday == 7.
2777
2777
2778
+ See Also
2779
+ --------
2780
+ Timestamp.weekday : Return the day of the week with Monday=0, Sunday=6.
2781
+ Timestamp.isocalendar : Return a tuple containing ISO year, week number
2782
+ and weekday.
2783
+ datetime.date.isoweekday : Equivalent method in datetime module.
2784
+
2778
2785
Examples
2779
2786
--------
2780
2787
>>> ts = pd.Timestamp('2023-01-01 10:00:00')
You can’t perform that action at this time.
0 commit comments