interpret.fpcat {dad} | R Documentation |
Scores of the "fpcat"
function vs. moments of the densities
Description
This function applies to an object of class "fpcat"
and does the same as for an object of class "fpcad"
: it plots the principal scores vs. the moments of the densities (means, standard deviations, variances, correlations, skewness and kurtosis coefficients), and computes the correlations between these scores and moments.
Usage
## S3 method for class 'fpcat'
interpret(x, nscore = 1, moment=c("mean", "sd", "var", "cov", "cor",
"skewness", "kurtosis"), ...)
Arguments
x |
object of class |
nscore |
numeric. Selects the column of the data frame Note that since dad-4, Warning: |
moment |
characters string. Selects the moments to cross with scores:
|
... |
Arguments to be passed to methods. |
Details
A graphics device can contain up to 9 graphs. If there are too many (more than 36) graphs for each score, one can display the graphs in a multipage PDF file.
The number of principal scores to be interpreted cannot be greater than nb.factors
of the data frame x$scores
returned by the function fpcat.
Value
Returns a list including:
pearson |
matrix of Pearson correlations between selected scores and moments. |
spearman |
matrix of Spearman correlations between selected scores and moments. |
Author(s)
Rachid Boumaza, Pierre Santagostini, Smail Yousfi, Gilles Hunault, Sabine Demotes-Mainard
References
Boumaza, R., Yousfi, S., Demotes-Mainard, S. (2015). Interpreting the principal component analysis of multivariate density functions. Communications in Statistics - Theory and Methods, 44 (16), 3321-3339.
See Also
Examples
# Alsacian castles with their building year
data(castles)
castyear <- foldert(lapply(castles, "[", 1:4))
fpcayear <- fpcat(castyear, group.name = "year")
interpret(fpcayear)
## Not run:
interpret(fpcayear, moment="var")
## End(Not run)