[R] Find the closest value in a list or matrix

Tobias Verbeke tobias.verbeke at telenet.be
Wed Jul 9 20:53:15 CEST 2008


Daniel Malter wrote:

> x=c(1:100)
> your.number=5.43
> which(abs(x-your.number)==min(abs(x-your.number)))

or [depending on the problem]:

which.min(abs(x-your.number))

HTH,
Tobias

> 
> -------------------------
> cuncta stricte discussurus
> -------------------------
> 
> -----Ursprüngliche Nachricht-----
> Von: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] Im
> Auftrag von R_Learner
> Gesendet: Wednesday, July 09, 2008 11:28 AM
> An: r-help at r-project.org
> Betreff: [R] Find the closest value in a list or matrix
> 
> 
> I have a long list of numbers [3.4,5.4,3.67,....], and I basically want to
> find the index of the number closest to this number that I have, let's say
> 5.43. How would I do this without writing a for loop (I have to do this many
> times for several lists)? Is there a "lookup" function in R? 
> 
> Thanks!
> --
> View this message in context:
> http://www.nabble.com/Find-the-closest-value-in-a-list-or-matrix-tp18363290p
> 18363290.html
> Sent from the R help mailing list archive at Nabble.com.
> 
> ______________________________________________
> 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.
> 
> ______________________________________________
> 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