R/n.R

Defines functions n

Documented in n

n <-
function(Data){
n = numeric( max(Data[,4]) )
for (i in 1:max(Data[,4]))  n[i] <- length( which(Data[,4]==i) )
return(n)
}

Try the ANOVA.TFNs package in your browser

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

ANOVA.TFNs documentation built on May 1, 2019, 9:14 p.m.