EXPAND ALL
- Home
- About Pixie
- Installing Pixie
- Using Pixie
- Tutorials
- Reference
Unions the rows of the passed in DataFrames with this DataFrame. The passed in DataFrames. must have the same relation or append
will throw a compilation error. Use merge
to combine DataFrames with different relations. If there is a time column in the relation, append
sorts the Unioned data by time. If there is no time column, then append will simply return a DataFrame with each DataFrame stacked on the other.
Name | Type | Description |
---|---|---|
other | px.DataFrame | The DataFrame to union with this one, relation must be the same. |