File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -158,6 +158,7 @@ Top-level dealing with datetimelike
158
158
bdate_range
159
159
period_range
160
160
timedelta_range
161
+ infer_freq
161
162
162
163
Top-level evaluation
163
164
~~~~~~~~~~~~~~~~~~~~
@@ -1364,6 +1365,7 @@ Time/Date Components
1364
1365
DatetimeIndex.is_quarter_end
1365
1366
DatetimeIndex.is_year_start
1366
1367
DatetimeIndex.is_year_end
1368
+ DatetimeIndex.inferred_freq
1367
1369
1368
1370
Selecting
1369
1371
~~~~~~~~~
Original file line number Diff line number Diff line change @@ -79,6 +79,11 @@ def freqstr(self):
79
79
80
80
@cache_readonly
81
81
def inferred_freq (self ):
82
+ """
83
+ Trys to return a string representing a frequency guess,
84
+ generated by infer_freq. Returns None if it can't autodetect the
85
+ frequency.
86
+ """
82
87
try :
83
88
return infer_freq (self )
84
89
except ValueError :
You can’t perform that action at this time.
0 commit comments