快捷方式

torcharrow.DataFrame.append

DataFrame.append(values)

返回附加了值的列/数据帧。

参数:

values (值列表数据帧) –

示例

>>> import torcharrow as ta
>>> sf = ta.column([ ["hello", "world"], ["how", "are", "you"] ], dtype =dt.List(dt.string))
>>> sf = sf.append([["I", "am", "fine"]])
>>> sf
0  ['hello', 'world']
1  ['how', 'are', 'you']
2  ['I', 'am', 'fine']
dtype: List(string), length: 3, null_count: 0

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

获取面向初学者和高级开发者的深入教程

查看教程

资源

查找开发资源并获得问题的解答

查看资源