R/print.quantileDA.R

Defines functions print.quantileDA

Documented in print.quantileDA

print.quantileDA<-function(x,...)
{
	out=x
	message("")
	message("Results of the quantile classifier")
	message("")
	cat(paste("Minimum misclassification rates attained at theta = ",out$theta.choice,sep=""),"\n")
	cat(paste("Miclassification rate in the training set: ", round(out$me.train,2),sep=""),"\n")
	cat(paste("Miclassification rate in the test set: ",round(out$me.test,2),sep=""),"\n")
	
}

Try the quantileDA package in your browser

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

quantileDA documentation built on May 2, 2019, 5:54 a.m.