Skip to content

Commit fa41df8

Browse files
committed
put back section breaks
1 parent 696332e commit fa41df8

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

pandas/core/generic.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10514,6 +10514,7 @@ def _doc_parms(cls):
1051410514

1051510515
_num_ddof_doc = """
1051610516
%(desc)s
10517+
1051710518
Parameters
1051810519
----------
1051910520
axis : %(axis_descr)s
@@ -10529,12 +10530,14 @@ def _doc_parms(cls):
1052910530
numeric_only : bool, default None
1053010531
Include only float, int, boolean columns. If None, will attempt to use
1053110532
everything, then use only numeric data. Not implemented for Series.
10533+
1053210534
Returns
1053310535
-------
1053410536
%(name1)s or %(name2)s (if level specified)\n"""
1053510537

1053610538
_bool_doc = """
1053710539
%(desc)s
10540+
1053810541
Parameters
1053910542
----------
1054010543
axis : {0 or 'index', 1 or 'columns', None}, default 0
@@ -10558,11 +10561,13 @@ def _doc_parms(cls):
1055810561
**kwargs : any, default None
1055910562
Additional keywords have no effect but might be accepted for
1056010563
compatibility with NumPy.
10564+
1056110565
Returns
1056210566
-------
1056310567
%(name1)s or %(name2)s
1056410568
If level is specified, then, %(name2)s is returned; otherwise, %(name1)s
1056510569
is returned.
10570+
1056610571
%(see_also)s
1056710572
%(examples)s"""
1056810573

@@ -10628,8 +10633,10 @@ def _doc_parms(cls):
1062810633

1062910634
_cnum_doc = """
1063010635
Return cumulative %(desc)s over a DataFrame or Series axis.
10636+
1063110637
Returns a DataFrame or Series of the same size containing the cumulative
1063210638
%(desc)s.
10639+
1063310640
Parameters
1063410641
----------
1063510642
axis : {0 or 'index', 1 or 'columns'}, default 0
@@ -10640,10 +10647,12 @@ def _doc_parms(cls):
1064010647
*args, **kwargs
1064110648
Additional keywords have no effect but might be accepted for
1064210649
compatibility with NumPy.
10650+
1064310651
Returns
1064410652
-------
1064510653
%(name1)s or %(name2)s
1064610654
Return cumulative %(desc)s of %(name1)s or %(name2)s.
10655+
1064710656
See Also
1064810657
--------
1064910658
core.window.Expanding.%(accum_func_name)s : Similar functionality
@@ -10654,6 +10663,7 @@ def _doc_parms(cls):
1065410663
%(name2)s.cummin : Return cumulative minimum over %(name2)s axis.
1065510664
%(name2)s.cumsum : Return cumulative sum over %(name2)s axis.
1065610665
%(name2)s.cumprod : Return cumulative product over %(name2)s axis.
10666+
1065710667
%(examples)s"""
1065810668

1065910669
_cummin_examples = """\

0 commit comments

Comments
 (0)