### Name: MTP ### Title: A function to perform resampling-based multiple hypothesis ### testing ### Aliases: MTP ### Keywords: htest ### ** Examples #data set.seed(99) data<-matrix(rnorm(90),nr=9) group<-c(rep(1,5),rep(0,5)) #fwer control with bootstrap null distribution (B=100 for speed) m1<-MTP(X=data,Y=group,alternative="less",B=100,method="sd.minP") print(m1) summary(m1) par(mfrow=c(2,2)) plot(m1,top=9)