File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
124
124
-i " pandas.core.resample.Resampler.max PR01,RT03,SA01" \
125
125
-i " pandas.core.resample.Resampler.mean SA01" \
126
126
-i " pandas.core.resample.Resampler.min PR01,RT03,SA01" \
127
- -i " pandas.core.resample.Resampler.ohlc SA01" \
128
127
-i " pandas.core.resample.Resampler.prod SA01" \
129
128
-i " pandas.core.resample.Resampler.quantile PR01,PR07" \
130
129
-i " pandas.core.resample.Resampler.sem SA01" \
Original file line number Diff line number Diff line change @@ -3224,6 +3224,12 @@ def ohlc(self) -> DataFrame:
3224
3224
DataFrame
3225
3225
Open, high, low and close values within each group.
3226
3226
3227
+ See Also
3228
+ --------
3229
+ DataFrame.agg : Aggregate using one or more operations over the specified axis.
3230
+ DataFrame.resample : Resample time-series data.
3231
+ DataFrame.groupby : Group DataFrame using a mapper or by a Series of columns.
3232
+
3227
3233
Examples
3228
3234
--------
3229
3235
You can’t perform that action at this time.
0 commit comments