Shortcuts

torcharrow.DataFrame.append

DataFrame.append(values)

Returns column/dataframe with values appended.

Parameters:

values (list of values or dataframe) –

Examples

>>> 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

Docs

Access comprehensive developer documentation for PyTorch

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources