我有一个表格,列中有不同的条目(但我不知道所有条目)
table:
column1 | column2
x1 | y1
x1 | y2
x2 | y2
x3 | y1
x3 | y2
现在我想要一个列表或字典,其中第一列的所有条目都是计数的:
dict = (x1:2, x2:1, x3:2)
我试过了:
table = env.readCsvFile(tablepath).as('column1, 'column2)
var content = table.select('column1)
content.count()
我尝试使用 Word-Count 示例链接,但它需要一个字符串数组作为输入?!所以
Wordcount(content) or Wordcount(content.toString())
不起作用。