[R] Finding the maximum elements in an array/matrix

R. Michael Weylandt michael.weylandt at gmail.com
Fri Mar 30 04:39:53 CEST 2012


As they say, RTFM....in particular, this part:

? which.max --> See Also:

     Use ‘arrayInd()’, if you need array/matrix indices instead of 1D
     vector ones.

Michael

On Thu, Mar 29, 2012 at 10:27 PM, jpm miao <miaojpm at gmail.com> wrote:
> Hello,
>
>   I would like to find the maximum element in a matrix or an array but it
> does not return what I want.
>
>   For example, If I have a 2*2 matrix A whose maximum element is the
> A(1,2). I would like the answer (1,2), but it returns 3, which is the
> ordinal if one counts by columns. Is there any function that returns (1,2)?
>
>
>   Thanks
>
>> A<-rbind(c(1,4), c(3,2))> A     [,1] [,2]
> [1,]    1    4
> [2,]    3    2> which.max(A)[1] 3
>
>        [[alternative HTML version deleted]]
>
> ______________________________________________
> R-help at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.



More information about the R-help mailing list