nxcals.api.extraction.data.builders.DataFrame.unionAll
- DataFrame.unionAll(other: DataFrame) DataFrame
Return a new
DataFramecontaining the union of rows in this and anotherDataFrame.Added in version 1.3.0.
Changed in version 3.4.0: Supports Spark Connect.
- Parameters:
other (
DataFrame) – AnotherDataFramethat needs to be combined- Returns:
A new
DataFramecontaining combined rows from both dataframes.- Return type:
Notes
This method combines all rows from both DataFrame objects with no automatic deduplication of elements.
Use the distinct() method to perform deduplication of rows.
unionAll()is an alias tounion()See also