@@ -5561,6 +5561,10 @@ def groupby(self, by=None, axis=0, level=None, as_index=True, sort=True,
5561
5561
reduce the dimensionality of the return type if possible,
5562
5562
otherwise return a consistent type
5563
5563
5564
+ Returns
5565
+ -------
5566
+ GroupBy object
5567
+
5564
5568
Examples
5565
5569
--------
5566
5570
DataFrame results
@@ -5572,10 +5576,15 @@ def groupby(self, by=None, axis=0, level=None, as_index=True, sort=True,
5572
5576
5573
5577
>>> data.groupby(['col1', 'col2']).mean()
5574
5578
5575
- Returns
5576
- -------
5577
- GroupBy object
5579
+ Notes
5580
+ -----
5581
+ See the `user guide
5582
+ <http://pandas.pydata.org/pandas-docs/stable/groupby.html>`_ for more.
5578
5583
5584
+ See also
5585
+ --------
5586
+ resample : Convenience method for frequency conversion and resampling
5587
+ of time series.
5579
5588
"""
5580
5589
from pandas .core .groupby import groupby
5581
5590
@@ -5774,8 +5783,16 @@ def resample(self, rule, how=None, axis=0, fill_method=None, closed=None,
5774
5783
5775
5784
.. versionadded:: 0.19.0
5776
5785
5786
+ Returns
5787
+ -------
5788
+ Resampler object
5789
+
5777
5790
Notes
5778
5791
-----
5792
+ See the `user guide
5793
+ <http://pandas.pydata.org/pandas-docs/stable/timeseries.html#resampling>`_
5794
+ for more.
5795
+
5779
5796
To learn more about the offset strings, please see `this link
5780
5797
<http://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases>`__.
5781
5798
@@ -5941,6 +5958,10 @@ def resample(self, rule, how=None, axis=0, fill_method=None, closed=None,
5941
5958
a b c d
5942
5959
2000-01-01 00:00:00 0 6 12 18
5943
5960
2000-01-01 00:03:00 0 4 8 12
5961
+
5962
+ See also
5963
+ --------
5964
+ groupby : Group by mapping, function, label, or list of labels.
5944
5965
"""
5945
5966
from pandas .core .resample import (resample ,
5946
5967
_maybe_process_deprecations )
0 commit comments