作业3:用Scala完成wordCount操作

源数据:

hello hive good

mand good mand

good good

mand hello hive

源码:

package com.ruozedata
import scala.io.Source

object wordCount {
  def main(args: Array[String]): Unit = {
    val b = Source.fromFile("""G:\bigdata\[201805发布版]若泽数据-零基础大数据第4期\软件\IDEA_workspace\g-719\src\main\scala\com\ruozedata\wcdata.txt""").getLines().toList.flatMap ( _.split("\t") )
      .map ((_, 1) ).groupBy(_._1).mapValues(_.map((_._2)).reduce(_ + _))
      println(b)
  }
}

操作结果:
作业3:用Scala完成wordCount操作_第1张图片

参考资料:https://blog.csdn.net/qq_28335647/article/details/52900301

你可能感兴趣的:(作业)