Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated comments use correct sample code for Dataframe joins
The API signatire for join requires the JoinType to be the third parameter. The code examples provided for join show JoinType being provided as the 2nd parater resuling in errors (i.e. "df1.join(df2, "outer", $"df1Key" === $"df2Key") ). The correct example should be df1.join(df2, $"df1Key" === $"df2Key", "outer")
- Loading branch information