File tree Expand file tree Collapse file tree 4 files changed +18
-17
lines changed Expand file tree Collapse file tree 4 files changed +18
-17
lines changed Original file line number Diff line number Diff line change @@ -4,20 +4,9 @@ Column object
4
4
=============
5
5
6
6
A conforming implementation of the dataframe API standard must provide and
7
- support a column object having the following attributes and methods.
7
+ support a column object having the following methods, attributes, and
8
+ behavior.
8
9
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
10
+ .. currentmodule :: dataframe_api
23
11
12
+ .. autoclass :: Column
Original file line number Diff line number Diff line change
1
+ __all__ = ['Column' ]
2
+
3
+
1
4
class Column :
5
+ """
6
+ Column object
7
+
8
+ Note that this column object is not meant to be instantiated directly by
9
+ users of the library implementing the dataframe API standard. Rather, use
10
+ constructor functions or an already-created dataframe object retrieved via
11
+
12
+ """
2
13
pass
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class DataFrame:
14
14
"""
15
15
DataFrame object
16
16
17
- Note that this DataFrame object is not meant to be instantiated directly by
17
+ Note that this dataframe object is not meant to be instantiated directly by
18
18
users of the library implementing the dataframe API standard. Rather, use
19
19
constructor functions or an already-created dataframe object retrieved via
20
20
@@ -31,6 +31,8 @@ class DataFrame:
31
31
In-place operators must not be supported. All operations on the dataframe
32
32
object are out-of-place.
33
33
34
+ **Methods and Attributes**
35
+
34
36
"""
35
37
@property
36
38
def dataframe (self ) -> object :
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ API specification
4
4
.. currentmodule :: dataframe_api
5
5
6
6
.. toctree ::
7
- :caption: API specification
8
7
:maxdepth: 3
9
8
10
9
dataframe_object
You can’t perform that action at this time.
0 commit comments