File tree 1 file changed +21
-0
lines changed
spec/API_specification/dataframe_api 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 18
18
conforming implementation adheres.
19
19
"""
20
20
21
+ def concat (dataframes : Sequence [DataFrame ]) -> DataFrame :
22
+ """
23
+ Concatenate DataFrames vertically.
24
+
25
+ To concatenate horizontally, please use ``insert``.
26
+
27
+ Parameters
28
+ ----------
29
+ dataframes : Sequence[DataFrame]
30
+ DataFrames to concatenate.
31
+ Column names, ordering, and dtypes must match.
32
+
33
+ Notes
34
+ -----
35
+ The order in which the input DataFrames appear in
36
+ the output is preserved (so long as the DataFrame implementation supports row
37
+ ordering).
38
+ """
39
+ ...
40
+
21
41
def column_from_sequence (sequence : Sequence [object ], * , dtype : dtype ) -> Column :
22
42
"""
23
43
Construct Column from sequence of elements.
@@ -52,3 +72,4 @@ def dataframe_from_dict(data: Mapping[str, Column]) -> DataFrame:
52
72
-------
53
73
DataFrame
54
74
"""
75
+ ...
You can’t perform that action at this time.
0 commit comments