File tree Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -134,9 +134,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
134
134
-i " pandas.Series.dt.tz_localize PR01,PR02" \
135
135
-i " pandas.Series.dt.unit GL08" \
136
136
-i " pandas.Series.gt SA01" \
137
- -i " pandas.Series.list.__getitem__ SA01" \
138
- -i " pandas.Series.list.flatten SA01" \
139
- -i " pandas.Series.list.len SA01" \
140
137
-i " pandas.Series.lt SA01" \
141
138
-i " pandas.Series.ne SA01" \
142
139
-i " pandas.Series.pad PR01,SA01" \
Original file line number Diff line number Diff line change @@ -92,6 +92,12 @@ def len(self) -> Series:
92
92
pandas.Series
93
93
The length of each list.
94
94
95
+ See Also
96
+ --------
97
+ str.len : Python built-in function returning the length of an object.
98
+ Series.size : Returns the length of the Series.
99
+ StringMethods.len : Compute the length of each element in the Series/Index.
100
+
95
101
Examples
96
102
--------
97
103
>>> import pyarrow as pa
@@ -128,6 +134,10 @@ def __getitem__(self, key: int | slice) -> Series:
128
134
pandas.Series
129
135
The list at requested index.
130
136
137
+ See Also
138
+ --------
139
+ ListAccessor.flatten : Flatten list values.
140
+
131
141
Examples
132
142
--------
133
143
>>> import pyarrow as pa
@@ -187,6 +197,10 @@ def flatten(self) -> Series:
187
197
pandas.Series
188
198
The data from all lists in the series flattened.
189
199
200
+ See Also
201
+ --------
202
+ ListAccessor.__getitem__ : Index or slice values in the Series.
203
+
190
204
Examples
191
205
--------
192
206
>>> import pyarrow as pa
You can’t perform that action at this time.
0 commit comments