File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
spec/API_specification/dataframe_api Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ def __dataframe_namespace__(self) -> Namespace:
50
50
recommended to only include those names that are part of the
51
51
specification.
52
52
"""
53
+ ...
53
54
54
55
@property
55
56
def dataframe (self ) -> SupportsDataFrameAPI :
@@ -256,7 +257,7 @@ def column_names(self) -> list[str]:
256
257
...
257
258
258
259
@property
259
- def schema (self ) -> dict [str , Any ]:
260
+ def schema (self ) -> dict [str , DType ]:
260
261
"""
261
262
Get dataframe's schema.
262
263
@@ -265,6 +266,7 @@ def schema(self) -> dict[str, Any]:
265
266
dict[str, Any]
266
267
Mapping from column name to data type.
267
268
"""
269
+ ...
268
270
269
271
def sort (
270
272
self ,
@@ -969,3 +971,4 @@ def join(
969
971
If, apart from `left_on` and `right_on`, there are any column names
970
972
present in both `self` and `other`.
971
973
"""
974
+ ...
You can’t perform that action at this time.
0 commit comments