File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed
Expand file tree Collapse file tree 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
223223 -i " pandas.Timestamp.fromordinal SA01" \
224224 -i " pandas.Timestamp.fromtimestamp PR01,SA01" \
225225 -i " pandas.Timestamp.hour GL08" \
226- -i " pandas.Timestamp.isoweekday SA01" \
227226 -i " pandas.Timestamp.max PR02" \
228227 -i " pandas.Timestamp.microsecond GL08" \
229228 -i " pandas.Timestamp.min PR02" \
Original file line number Diff line number Diff line change @@ -441,6 +441,13 @@ class NaTType(_NaT):
441441
442442 Monday == 1 ... Sunday == 7.
443443
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+
444451 Examples
445452 --------
446453 >>> 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'
27752775
27762776 Monday == 1 ... Sunday == 7.
27772777
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+
27782785 Examples
27792786 --------
27802787 >>> ts = pd.Timestamp('2023-01-01 10:00:00')
You can’t perform that action at this time.
0 commit comments