Skip to content

Commit dc299aa

Browse files
DOC: fix SA01 for pandas.core.resample.Resampler.ohlc
1 parent 2a10e04 commit dc299aa

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

ci/code_checks.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
124124
-i "pandas.core.resample.Resampler.max PR01,RT03,SA01" \
125125
-i "pandas.core.resample.Resampler.mean SA01" \
126126
-i "pandas.core.resample.Resampler.min PR01,RT03,SA01" \
127-
-i "pandas.core.resample.Resampler.ohlc SA01" \
128127
-i "pandas.core.resample.Resampler.prod SA01" \
129128
-i "pandas.core.resample.Resampler.quantile PR01,PR07" \
130129
-i "pandas.core.resample.Resampler.sem SA01" \

pandas/core/groupby/groupby.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3224,6 +3224,12 @@ def ohlc(self) -> DataFrame:
32243224
DataFrame
32253225
Open, high, low and close values within each group.
32263226
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+
32273233
Examples
32283234
--------
32293235

0 commit comments

Comments
 (0)