Command to get number of identical entries in a list
I have a list from which I want to get the number of times 0's (and 1's) appear in it.m = {0, 0, 0, 0, 0, 0, 0, 1, 1, 1};
nzeros = N Items (m) <1; show (nzeros);
does not seem to work to get the number of times 0 appear in m.(I get nzeros = 0)What is the correct way to get the number of times an identical entry appears on a list (I am on JMP 13)?