most frequent value



On 2012-11-04, Ryszard Wi?niowski <sphinx at sphinx.come.pl> wrote:

> How I can get a most frequent value from list?
> is any function doing this?

Well, I can't think of a single function to do it, but you can call
discrete_freq to count how many of each value there are, then inspect
the result to see which one is most common.

discrete_freq is in the descriptive statistics package.
load(descriptive) loads it.

best

Robert Dodier