R/print.epCA.R

print.epCA <-
function (x,...) {

#list(fi=fi,di=di,ci=ci,ri=ri,fj=fj,cj=cj,rj=rj,dj=dj,t=taus,M=M,W=W,pdq=pdqFIN)

  res.epCA <- x
  if (!inherits(res.epCA, "epCA")) stop ("no convenient data")
  cat("**Results for Correspondence Analysis**\n")
  cat ("The analysis was performed on ", nrow(res.epCA$fi),
       "individuals, described by", nrow(res.epCA$fj), "variables\n")
  cat("*The results are available in the following objects:\n\n")
  res <- array("", c(17, 2), list(1:17, c("name", "description")))
  
  res[1,] <- c("$fi","Factor scores of the rows")
  res[2,] <- c("$di","Squared distances of the rows")
  res[3,] <- c("$ci","Contributions of the rows")
  res[4,] <- c("$ri", "Cosines of the rows")
  res[5,] <- c("$fj","Factor scores of the columns")
  res[6,] <- c("$dj","square distances of the columns")
  res[7,] <- c("$cj","Contributions for the columns")
  res[8,] <- c("$rj", "Cosines of the columns")
  res[9,] <- c("$t","Explained Variance")
  res[10,] <- c("$eigs","Eigenvalues")  
  res[11,] <- c("$M","masses")
  res[12,] <- c("$W","weights")
  res[13,] <- c("$c","center")  
  res[14,] <- c("$pdq","GSVD data")    
  res[15,] <- c("$X","X matrix to decompose")    
  res[16,] <- c("$hellinger","a boolean. TRUE if Hellinger distance was used.")        
  res[17,] <- c("$symmetric","a boolean. TRUE if symmetric scores used for biplot.")          
  
  print(res)

}

Try the ExPosition package in your browser

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

ExPosition documentation built on May 1, 2019, 7:06 p.m.