Learn R Programming

multiblock (version 0.8.8.2)

multiblock_results: Result Functions for Multiblock Objects

Description

Standard result computation and extraction functions for multiblock objects.

Usage

# S3 method for multiblock
scores(object, block = 0, ...)

# S3 method for multiblock loadings(object, block = 0, ...)

# S3 method for multiblock print(x, ...)

# S3 method for multiblock summary(object, ...)

Value

Scores or loadings are returned by scores.multiblock and loadings.multiblock, while print and summary methods invisibly returns the object.

Arguments

object

multiblock object.

block

integer/character for block selection.

...

Not implemented.

x

multiblock object.

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.

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

Run this code
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))

Run the code above in your browser using DataLab