Created
May 25, 2020 10:13
-
-
Save NeerajBhadani/534860aa5fc6d5428903889a13f96467 to your computer and use it in GitHub Desktop.
map_from_arrays
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val map_from_arr_df = full_df | |
.withColumn("result", map_from_arrays($"array_col1", $"array_col2")) | |
.drop("col1") | |
map_from_arr_df.show(truncate=false) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment