I cannot figure out what is the method i should use to find out:
- frequency of occurrence
- values that appear in the file
For example my file is:
xxxxx, yyyy , 79
xxxxx, yyyy , 80
xxxxx, yyyy , 79
xxxxx, yyyy , 81
xxxxx, yyyy , 80
and i want to find out that 79 has 40% of occurrence like 80 and 81 has 20%. How can i do that? (without R if it's possible...)
I need those because i want to plot an histogram using gnuplot. Can you also show me how to use the values just calculated to plot one histogram?