in reply to count frequency correspondint to one column

If there is a space between each row's entries, just use the split() function. For example, split(' ', 'a sk asd ') will give you an array {a, sk, asd}. From here you have a few options, but now it is easy look through one index at a time. Maybe make a hash of entries and their frequencies?