File tree Expand file tree Collapse file tree 2 files changed +8
-23
lines changed Expand file tree Collapse file tree 2 files changed +8
-23
lines changed Original file line number Diff line number Diff line change 7
7
8
8
__all__ = ["DataFrame" ]
9
9
10
+
10
11
class Scalar :
11
12
"A class to represent Python scalars"
12
13
Original file line number Diff line number Diff line change 1
- .. _ array -object :
1
+ .. _ dataframe -object :
2
2
3
3
Dataframe object
4
4
================
@@ -22,16 +22,6 @@ Arithmetic Operators
22
22
A conforming implementation of the array API standard must provide and support
23
23
an array object supporting the following Python arithmetic operators.
24
24
25
- - ``+x ``: :meth: `.DataFrame.__pos__ `
26
-
27
- - `operator.pos(x) <https://docs.python.org/3/library/operator.html#operator.pos >`_
28
- - `operator.__pos__(x) <https://docs.python.org/3/library/operator.html#operator.__pos_ _>`_
29
-
30
- - `-x `: :meth: `.DataFrame.__neg__ `
31
-
32
- - `operator.neg(x) <https://docs.python.org/3/library/operator.html#operator.neg >`_
33
- - `operator.__neg__(x) <https://docs.python.org/3/library/operator.html#operator.__neg_ _>`_
34
-
35
25
- `x1 + x2 `: :meth: `.DataFrame.__add__ `
36
26
37
27
- `operator.add(x1, x2) <https://docs.python.org/3/library/operator.html#operator.add >`_
@@ -136,11 +126,15 @@ Arithmetic Operators
136
126
137
127
Attributes
138
128
----------
129
+
130
+ TODO
131
+
139
132
..
140
133
NOTE: please keep the attributes in alphabetical order
141
134
142
135
143
- .. autosummary ::
136
+ ..
137
+ autosummary::
144
138
:toctree: generated
145
139
:template: property.rst
146
140
@@ -158,26 +152,16 @@ Methods
158
152
:toctree: generated
159
153
:template: property.rst
160
154
161
- DataFrame.__abs__
162
155
DataFrame.__add__
163
- DataFrame.__dataframe_namespace__
164
- DataFrame.__complex__
165
156
DataFrame.__eq__
166
- DataFrame.__float__
167
157
DataFrame.__floordiv__
168
158
DataFrame.__ge__
169
- DataFrame.__getitem__
170
159
DataFrame.__gt__
171
- DataFrame.__int__
172
160
DataFrame.__le__
173
161
DataFrame.__lt__
162
+ DataFrame.__ne__
174
163
DataFrame.__mod__
175
164
DataFrame.__mul__
176
- DataFrame.__ne__
177
- DataFrame.__neg__
178
- DataFrame.__or__
179
- DataFrame.__pos__
180
165
DataFrame.__pow__
181
- DataFrame.__setitem__
182
166
DataFrame.__sub__
183
167
DataFrame.__truediv__
You can’t perform that action at this time.
0 commit comments