DataFrame.Operations.Join
data JoinType Source #
Equivalent to SQL join types.
Constructors
join :: JoinType -> [Text] -> DataFrame -> DataFrame -> DataFrame Source #
Join two dataframes using SQL join semantics.
Only inner join is implemented for now.
innerJoin :: [Text] -> DataFrame -> DataFrame -> DataFrame Source #
Inner join of two dataframes. Note: for chaining, the left dataframe is actually on the right side.