lab 2 assignment - naveenanallamotu/Big-Data-Analytics-Lab-Assignments GitHub Wiki

Description of lab2 assignment This project is to check the count of how many words start with a similar letter The transformation I used for this program is flap map for input. val wordcount=input.flatMap(line=>{line.split(" ")}).map(word=>(word{0},1)).cache() input: Text file output is set of letters mapped to the count with which these start.