In statistical language R, mean() and median() are standard functions which do what you'd expect. mode() tells you the internal storage mode of the R object, not the value that occurs the most in its argument. But surely there is a standard library function that implements mode for a vector (or list).
|
|
||||
|
|
One more solution, which works for both numeric & character/factor data:
On my dinky little machine, that can generate & find the mode of a 10M-integer vector in about half a second. |
|||
|
|
|
There is package
For more information see this page |
|||||
|
|
found this on the r mailing list, hope it's helpful. It is also what I was thinking anyways. You'll want to table() the data, sort and then pick the first name. It's hackish but should work.
|
|||||
|
|
Here, another solution:
|
|||||
|
|
I've written the faollowing code to generate the mode.
Let's try it:
|
|||
|
|
|
A quick and dirty way of estimating the mode of a vector of numbers you believe come from a continous univariate distribution (e.g. a normal distribution) is defining and using the following function:
Then to get the mode estimate:
|
|||
|
|
|
The following function comes in three forms: method = "mode" [default]: calculates the mode for a unimodal vector, else returns an NA
|
|||
|
|
|
R has so many add-on packages that some of them may well provide the [statistical] mode of a numeric list/series/vector. However the standard library of R itself doesn't seem to have such a built-in method! One way to work around this is to use some construct like the following (and to turn this to a function if you use often...):
For bigger sample list, one should consider using a temporary variable for the max(tabSmpl) value (I don't know that R would automatically optimize this) Reference: see "How about median and mode?" in this KickStarting R lesson |
||||
|
|
|
Another simple option that gives all values ordered by frequency is to use
|
|||
|
|
|
Sorry, I might take it too simple, but doesn't this do the job? (in 1.3 secs for 1E6 values on my machine):
You just have to replace the "round(rnorm(1e6),2)" with your vector. |
|||
|
|