I have a matrix with varing number of columns of the following form:
1 10 10 10 15
2 14 14 13 13
4 19 19 20 21
6 32 32 20 15
I would like to select the majority for each row producing the following output:
1 10
2 14/13
3 19
4 32
|
I have a matrix with varing number of columns of the following form:
I would like to select the majority for each row producing the following output:
|
|||
|
Seemed like
|
|||||
|
|
One of the possible answers:
|
|||||||
|
|
late addition, but when values are all positive, as in your example, you can also:
without first column:
and finally tweak your output:
|
|||||
|
tableis the easiest way to find modes. – Carl Witthoft Jan 2 at 0:36