TXTCOUNT <ascii_file>,<count_file> calculates line by line frequencies of all ascii characters in <ascii_file> and saves them as a new ascii file <count_file> in the form: C0 C1 C2 ... C255 f(1,0) f(1,1) f(1,2) ... f(1,255) f(2,0) f(2,1) f(2,2) ... f(2,255) ... ... ... ... ... where the first line is a fixed line of labels (names) and f(j,i) is the frequency of char i on line j. To make statistics of <count_file>, convert it into a Survo data file by FILE SAVE <count_file> TO <new_data_file> .