R/summary.SK.R

Defines functions summary.SK

Documented in summary.SK

##
## S3 method to sumarize 'SK' object
##
summary.SK <- function(object, ...)
{
	if(!inherits(object,
		     'SK'))
		stop("Use only with \"SK\" objects!")

	cat('Goups of means at sig.level =',
	    object$out$Sig.level,
	    '\n')

	print(object$out$Result)	

}
jcfaria/ScottKnott documentation built on Nov. 1, 2020, 8:04 a.m.