R/truncZ.R

Defines functions `truncZ`

`truncZ` <-
function(z.perm,z.min,z.max){
	z.perm[z.perm<z.min]<-z.min
	z.perm[z.perm>z.max]<-z.max
	z.perm
}

Try the siggenes package in your browser

Any scripts or data that you put into this service are public.

siggenes documentation built on Nov. 8, 2020, 6:26 p.m.