R/NumI.R

Defines functions NumI

Documented in NumI

NumI <-
function(posNH, It=c(1,100))
{
	d<-length(posNH)
	numI<-NULL
	for (j in (1:d))
	{
		indN<-((posNH[[j]]>=It[1])&(posNH[[j]]<=It[2]))
		numI[j]<-sum(indN)
	}
	return(numI)
}

Try the IndTestPP package in your browser

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

IndTestPP documentation built on Aug. 29, 2020, 1:06 a.m.