multiblock_results {multiblock} | R Documentation |
Result Functions for Multiblock Objects
Description
Standard result computation and extraction functions for multiblock
objects.
Usage
## S3 method for class 'multiblock'
scores(object, block = 0, ...)
## S3 method for class 'multiblock'
loadings(object, block = 0, ...)
## S3 method for class 'multiblock'
print(x, ...)
## S3 method for class 'multiblock'
summary(object, ...)
Arguments
object |
|
block |
|
... |
Not implemented. |
x |
|
Details
Usage of the functions are shown using generics in the examples below.
Object printing and summary are available through:
print.multiblock
and summary.multiblock
.
Scores and loadings have their own extensions of scores()
and loadings()
throught
scores.multiblock
and loadings.multiblock
.
Value
Scores or loadings are returned by scores.multiblock
and loadings.multiblock
, while print and summary methods invisibly returns the object.
See Also
Overviews of available methods, multiblock
, and methods organised by main structure: basic
, unsupervised
, asca
, supervised
and complex
.
Common functions for plotting are found in multiblock_plots
, respectively.
Examples
data(wine)
sc <- sca(wine[c('Smell at rest', 'View', 'Smell after shaking')], ncomp = 4)
print(sc)
summary(sc)
head(loadings(sc, block = 1))
head(scores(sc))