快捷键

torcharrow.Column.append

Column.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 的全面开发者文档

查看文档

教程

获取针对初学者和高级开发者的深入教程

查看教程

资源

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

查看资源