DataFrame.append
Adds new row to the end of a DataFrame
danfo.DataFrame.append(values, index, options) [source]
Parameters | Type | Description | Default |
---|---|---|---|
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 as | |
options | Object | Optional parameters inplace: Boolean indicating whether to perform the operation inplace or not. Defaults to false | { inplace : false } |
Examples
Appends a new row to the end of a DataFrame
Last updated