DataFrame.append
Adds new row to the end of a DataFrame
Last updated
Was this helpful?
Adds new row to the end of a DataFrame
Last updated
Was this helpful?
danfo.DataFrame.append(values, index, options) []
values
Array, Series or DataFrame
Value to append to the DataFrame
index
Array
The new index value(s) to append to the Series. Must contain the same number of values asnewValues
as they map 1 - 1
.
options
Object
Optional parameters
inplace: Boolean indicating whether to perform the operation inplace or not. Defaults to false
{
inplace : false
}