File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -164,8 +164,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
164
164
-i " pandas.Series.dt.ceil PR01,PR02" \
165
165
-i " pandas.Series.dt.components SA01" \
166
166
-i " pandas.Series.dt.day_name PR01,PR02" \
167
- -i " pandas.Series.dt.days_in_month SA01" \
168
- -i " pandas.Series.dt.daysinmonth SA01" \
169
167
-i " pandas.Series.dt.floor PR01,PR02" \
170
168
-i " pandas.Series.dt.freq GL08" \
171
169
-i " pandas.Series.dt.microseconds SA01" \
Original file line number Diff line number Diff line change @@ -1913,6 +1913,15 @@ def isocalendar(self) -> DataFrame:
1913
1913
"""
1914
1914
The number of days in the month.
1915
1915
1916
+ See Also
1917
+ --------
1918
+ Series.dt.day : Return the day of the month.
1919
+ Series.dt.is_month_end : Return a boolean indicating if the
1920
+ date is the last day of the month.
1921
+ Series.dt.is_month_start : Return a boolean indicating if the
1922
+ date is the first day of the month.
1923
+ Series.dt.month : Return the month as January=1 through December=12.
1924
+
1916
1925
Examples
1917
1926
--------
1918
1927
>>> s = pd.Series(["1/1/2020 10:00:00+00:00", "2/1/2020 11:00:00+00:00"])
You can’t perform that action at this time.
0 commit comments