Created
March 20, 2017 09:08
-
-
Save darionyaphet/f7dceac12d333af74c5670b9a19e8f9a to your computer and use it in GitHub Desktop.
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
file | |
.map(line => (line.split(",")(0), 1)) | |
.reduceByKey(_ + _) | |
.map(item => item.swap) | |
.sortByKey(false) | |
.map(item => item.swap) | |
.take(20) | |
.foreach(println) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment