| multiblock_results | R Documentation |
Standard result computation and extraction functions for multiblock objects.
## 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, ...)
object |
|
block |
|
... |
Not implemented. |
x |
|
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.
Scores or loadings are returned by scores.multiblock and loadings.multiblock, while print and summary methods invisibly returns the object.
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.
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))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.