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