File tree 6 files changed +72
-1
lines changed
6 files changed +72
-1
lines changed Original file line number Diff line number Diff line change
1
+ .. _column-object :
2
+
3
+ Column object
4
+ =============
5
+
6
+ A conforming implementation of the dataframe API standard must provide and
7
+ support a column object having the following attributes and methods.
8
+
9
+ -------------------------------------------------
10
+
11
+ Methods
12
+ -------
13
+ TODO
14
+
15
+ ..
16
+ NOTE: please keep the methods in alphabetical order
17
+
18
+ .. currentmodule :: dataframe_api
19
+
20
+ .. autosummary ::
21
+ :toctree: generated
22
+ :template: property.rst
23
+
Original file line number Diff line number Diff line change
1
+ .. _groupby-object :
2
+
3
+ Groupby object
4
+ ==============
5
+
6
+ A conforming implementation of the dataframe API standard must provide and
7
+ support a groupby object having the following attributes and methods.
8
+
9
+ -------------------------------------------------
10
+
11
+ Methods
12
+ -------
13
+ ..
14
+ NOTE: please keep the methods in alphabetical order
15
+
16
+ .. currentmodule :: dataframe_api
17
+
18
+ .. autosummary ::
19
+ :toctree: generated
20
+ :template: property.rst
21
+
22
+ GroupBy.all
23
+ GroupBy.any
24
+ GroupBy.max
25
+ GroupBy.min
26
+ GroupBy.mean
27
+ GroupBy.median
28
+ GroupBy.prod
29
+ GroupBy.std
30
+ GroupBy.sum
31
+ GroupBy.var
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ API specification
5
5
6
6
.. toctree ::
7
7
:caption: API specification
8
- :maxdepth: 1
8
+ :maxdepth: 3
9
9
10
10
dataframe_object
11
+ column_object
12
+ groupby_object
Original file line number Diff line number Diff line change
1
+ .. currentmodule :: {{ module }}
2
+
3
+ {{ name.split('.')[-1] | underline }}
4
+
5
+ .. autodata :: {{ name }}
Original file line number Diff line number Diff line change
1
+ .. currentmodule :: {{ module }}
2
+
3
+ {{ name.split('.')[-1] | underline }}
4
+
5
+ .. autofunction :: {{ name }}
Original file line number Diff line number Diff line change
1
+ .. currentmodule :: {{ module }}
2
+
3
+ {{ name.split('.')[-1] | underline }}
4
+
5
+ .. auto{{ objtype }}:: {{ objname }}
You can’t perform that action at this time.
0 commit comments