Re: [R] difficult to find index value

2016-03-30 Thread Ista Zahn
FAQ 7.31 I think. Here are a couple things you can try. close_enough <- function(x, y) isTRUE(all.equal(x, y)) periodlimint<-seq(from=0.1, to=50, by=0.1) indexAtest <- which(sapply(periodlimint, close_enough, y = 0.7)) match( as.character(.7), periodlimint) Best, Ista On Wed, Mar 30, 2016 at

[R] difficult to find index value

2016-03-30 Thread Rubel Das via R-help
 Dear R group memberI tried couple of hours to figure out the solution of following.match function behaves strange from value 0.7 and 1.7 > periodlimint<-seq(from=0.1, to=50, by=0.1)> indexAtest<-match( .6, > periodlimint)> indexAtest[1] 6> periodlimint<-seq(from=0.1, to=50, by=0.1)> >