https://github.com/cran/robCompositions
Raw File
Tip revision: e0e46e2d22f0b04308b896fd000cd7f493f04383 authored by Matthias Templ on 16 August 2010, 00:00:00 UTC
version 1.4.3
Tip revision: e0e46e2
print.adtestWrapper.R
print.adtestWrapper <- function(x,...){
	if(all(x$check)){
		print(paste("The data follow the normal distribution on the simplex (alpha =",x$alpha,")",sep=""))
	} else { 
		print(paste("The data do not follow the normal distribution on the simplex (alpha =",x$alpha,")",sep=""))
		#print(x$check)
}
}
back to top