This file contains hidden or 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
/** | |
* Using text from http://www.gutenberg.org/ebooks/1129?msg=welcome_stranger | |
* | |
* Get ranked word count from text file. Demonstrate use of implict ordering and overriding it with Spark RDD | |
* / | |
/* Change the path to where you put the text. */ | |
val lines = sc.textFile("../data/books/MacBeth.txt") | |
/* Get the words but drop the empty ones */ |
NewerOlder