如果我有這樣的斯卡拉輸出代碼:斯卡拉過濾器僅使用數字
(1,ab)
(2,fd)
(4, df)
(a,1)
(b,3)
(c,4)
(d,6)
我想刪除所有這些都在元組中的第一個插槽中數字的元組,如前三的位置:(1,ab) (2,fd) (4, df)
。
出於某種原因,我這裏的代碼不正確過濾那些元組:
val temp = t.countByValue().filter(_._1 != Int).print()
的countByValue()
函數返回(value (in my case a string like (a,b,c,), count of the times the string occurs)
一個元組。
'countByValue'返回什麼類型? – Dima