I want to be able to see how many values in a dataset are repeated more than once. it doesn't matter what the value is. I just want to see how many values do not uniquely appear in a list.
For example, the following list of numbers each in its own row.
1
2
5
3
c
6
z
g
z
z
1
3
3
3
The result should tell me 3 because 1, 3, z have duplicate entries in the list. Is this possible?
For example, the following list of numbers each in its own row.
1
2
5
3
c
6
z
g
z
z
1
3
3
3
The result should tell me 3 because 1, 3, z have duplicate entries in the list. Is this possible?