View source: R/summary.CA3variants.R
summary.CA3variants | R Documentation |
This function prints the summary of the results of three-way symmetrical or non-symmetrical correspondence analysis. In particular it gives information on core and squared core and on the explained inertia when reducing dimensions.
## S3 method for class 'CA3variants' summary(object, digits=3, ...)
object |
The name of the output of the main function |
digits |
The input parameter specifying the digital number. By default, |
... |
Further arguments passed to or from other methods. |
The value of output returned in short depends on the kind of three-way correspondence analysis variant performed. It gives the core table, the squared core table, the explained inertia, the total inertia and its proportion.
Rosaria Lombardo, Eric J Beh and Michel van de Velden.
Beh EJ and Lombardo R (2014) Correspondence Analysis, Theory, Practice and New Strategies. John Wiley & Sons.
data(happy) ris.ca3<-CA3variants(happy, dims= c(p=2,q=2,r=2), ca3type = "CA3") summary(ris.ca3) ris.nsca3<-CA3variants(happy, dims = c(p=2,q=2,r=2), ca3type = "NSCA3") summary(ris.nsca3) ris.oca3<-CA3variants(happy, dims = c(p=3,q=5,r=4), ca3type = "OCA3",norder=3) summary(ris.oca3) ris.onsca3<-CA3variants(happy, dims = c(p=3,q=5,r=4), ca3type = "ONSCA3",norder=3) summary(ris.onsca3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.