R/summary.QmethodRes.R

Defines functions summary.QmethodRes

Documented in summary.QmethodRes

summary.QmethodRes <- function(object, ...) {
  cat(object$brief$info, sep="\n")
  cat("\nFactor scores\n")
  print(object[[6]], quote=FALSE)
  fch <- t(object[[7]][[1]])
  rownames(fch) <- c(
    "Average reliability coefficient", 
    "Number of loading Q-sorts", 
    "Eigenvalues", 
    "Percentage of explained variance", 
    "Composite reliability", 
    "Standard error of factor scores")
  print(fch, quote=FALSE, digits=2)
}

Try the qmethod package in your browser

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

qmethod documentation built on April 1, 2023, 12:18 a.m.