How do I find how many times a value has been repeated in a column - R

r, statistics

Solution

Did you try already `table(dfUL)`?

Problem

Possible Duplicate: Count unique values in R I have just one column full of names, and I need to know how many times each name is on this column. I can do a ``` summary(dfUL) ``` where dfUL is my user list data frame This will give me a summary with the number of times a particular value is repeated, but it will only do it for the top 6. How can i do that for the entire data frame?

Original source

Related problems