# concat-拼接
调用concat函数连接Series或DataFrame实例列表并获取生成的增强数据表实例。
最小支持版本:5.0.0
# 接口说明
已构建Dataframe对象,详情请参见fromObject (opens new window)。
# 语法
DataFrame.concat(<objs>, <axis>, <join>, <options>)
1
DataFrame.拼接(<objs>, <axis>, <join>, <options>)
1
# 函数类型
静态函数
# 请求参数
参数名称 | 类型 | 是否必选 | 默认值 | 示例值 | 描述 |
---|---|---|---|---|---|
objs | Cube.Lang.List | 是 | 无 | Series实例列表 | 待连接的对象。 可以是Series实例列表或是Dataframe实例列表。 |
axis | Cube.Object | 是 | 无 | 0 | 轴的方向。取值: 1: 纵轴 0: 横轴 |
join | Cube.Lang.String | 是 | 无 | "inner" | 连接模式。取值: "inner": 内连接 "outer": 外连接 |
options | Cube.Lang.KeyValue | 是 | 无 | {} | 可设置是否拷贝原对象、列是否进行对齐、是否验证索引等,详情请参见配置项说明 (opens new window)。 |
# 返回参数
参数名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
Result | Cube.System.DataFrame | Cube.System.Dataframe | 获取到的增强数据表实例。 |
# 请求示例
Dataframe.concat(Series实例列表, 0, "inner", {})
1
最近更新时间: {
"value": "2023-09-12",
"effect": true
}