frequency of unique entries & eliminating blank cells
Posted by Coline on September 20, 2001 3:38 PM
I'd like to know how to do 2 things with ease:
1. I would like to compute frequencies on long lists of data with many repeating entries. For example, if I have a list of ID #s, and I would like to know how many times each ID appears, how can I do these computations most easily? So that this list:
ID
1
1
1
2
3
3
can ideally become lists like these:
ID Frequency
1 3
2 1
3 2
Also, I would like to know how to eliminate blank cells (particularly in the case of having a large database where each column represents each individual's data and I would like to eliminate blank cells by column) if these appear between entries so that this database:
1 2
4
2
3
3
4 2
becomes:
1 2
2 4
3 3
4 2
Thanks!