Does anyone know how to find the mode (most frequent across variables for a single case in R?
For example, if I had data on favorite type of fruit (x), asked nine times (x1-x9) for each respondent (id) in a survey. If I wanted to find the modal response for each test subject in the first five times asked, how would I program that in R?
More succinctly, with the example data is below, how do I find the MODE within each case?
id x1 x2 x3 x4 x5 MODE(x1-x5)?
1 3 5 6 4 5 5
2 7 4 7 4 7 7
3 3 4 4 4 3 4
4 3 2 2 2 3 2
idin your exampledata, are your columnsv1-v5meant to be labelledx1-x5? – mnel Jan 7 at 1:07c(3,2,2,2,3)is 7? – Matthew Lundberg Jan 7 at 1:13