Guest User

Untitled

a guest
Mar 23rd, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. val file = "/home/tolga/Desktop/mics18-2/big-data/homework2/covtype.csv/data-10.csv"
  2. for(line <- Source.fromFile(file).getLines){
  3. val seriesArray : Array = line.split(",").map(_.toInt).distinct /*error on this line*/
  4. println(line)
  5. }
Add Comment
Please, Sign In to add comment