Skip to content

Commit 3d23a42

Browse files
Resolve PR04 errors
1 parent 2b6d5f0 commit 3d23a42

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

pandas/core/groupby/groupby.py

+2-10
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ class providing the base-class of operations.
4444
from pandas.core.series import Series
4545
from pandas.core.sorting import get_group_index_sorter
4646

47-
_common_see_also = """\
47+
_common_see_also = """
4848
See Also
4949
--------
5050
Series.%(name)s
5151
DataFrame.%(name)s
52-
Panel.%(name)s\
52+
Panel.%(name)s
5353
"""
5454

5555
_apply_docs = dict(
@@ -1106,9 +1106,7 @@ def mean(self, *args, **kwargs):
11061106
Returns
11071107
-------
11081108
pandas.Series or pandas.DataFrame
1109-
11101109
%(see_also)s
1111-
11121110
Examples
11131111
--------
11141112
>>> df = pd.DataFrame({'A': [1, 1, 2, 1, 2],
@@ -1564,9 +1562,7 @@ def nth(self, n, dropna=None):
15641562
dropna : None or str, optional
15651563
apply the specified dropna operation before counting which row is
15661564
the nth row. Needs to be None, 'any' or 'all'
1567-
15681565
%(see_also)s
1569-
15701566
Examples
15711567
--------
15721568
@@ -2139,9 +2135,7 @@ def head(self, n=5):
21392135
21402136
Essentially equivalent to ``.apply(lambda x: x.head(n))``,
21412137
except ignores as_index flag.
2142-
21432138
%(see_also)s
2144-
21452139
Examples
21462140
--------
21472141
@@ -2167,9 +2161,7 @@ def tail(self, n=5):
21672161
21682162
Essentially equivalent to ``.apply(lambda x: x.tail(n))``,
21692163
except ignores as_index flag.
2170-
21712164
%(see_also)s
2172-
21732165
Examples
21742166
--------
21752167

0 commit comments

Comments
 (0)