Revision 2fc8c4fd1f424c8b2c3ae6ce3215e21c8381d6ab authored by Samrachana Adhikari on 25 November 2016, 07:42:51 UTC, committed by cran-robot on 25 November 2016, 07:42:51 UTC
1 parent d08047e
Raw File
which.suck.R

which.suck=function(vectors, dim){
 if(dim>1){which(vectors<0.10 | vectors>0.4)
	}else{which(vectors<0.30 | vectors>0.55)}

}
back to top