Member since
07-07-2017
1
Post
0
Kudos Received
0
Solutions
02-09-2018
07:02 PM
A = load 'Desktop/wordcount.txt'as(col1:chararray); B = foreach A generate flatten(TOKENIZE(col1))as (word:chararray); C = group B by word; cnt = foreach C generate flatten(group), COUNT(B.word); dump cnt;
... View more