捷徑

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 的完整開發者文件

檢視文件

教學課程

取得適用於初學者和進階開發者的深入教學課程

檢視教學課程

資源

尋找開發資源並獲得問題解答

檢視資源