R/print.covstatis.innerproduct.R

Defines functions print.covstatis.innerproduct

Documented in print.covstatis.innerproduct

print.covstatis.innerproduct <- function(x,...){
	
	res.covstatis.innerproduct <- x
	if (!inherits(res.covstatis.innerproduct, "covstatis.innerproduct")) stop ("no convenient data")
    cat("**Results from the analysis of the between table structure via COVSTATIS **\n")
    cat("*The results are available for the following objects:\n\n")
    res <- array("", c(10, 2), list(1:10, c("Name", "Description")))
	
	res[1,] <- c("$S", "i X i X j array of S Matrices")
	res[2,] <- c("$C","k X k, C Matrix")
	res[3,] <- c("$RVMatrix","RV Matrix")
	res[4,] <- c("$eigs.vector","Eigen Vectors of C")
	res[5,] <- c("$eigs","Eigen Values of C")
	res[6,] <- c("$fi","Factor Scores of C")
	res[7,] <- c("$ci","Contributions of the Rows of C")
	res[8,] <- c("$cj","Contributions of the Columns of C")
	res[9,] <- c("$t","% Variance Explained of C (tau)")
	res[10,] <- c("$alphaWeights","Alpha Weights")
	
	print(res)
}

Try the MExPosition package in your browser

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

MExPosition documentation built on May 29, 2017, 2:27 p.m.