Description Usage Arguments Value Examples
View source: R/allCommonDistinctiveStructures.R
A function that generates all common and distinctive structures given the number of variables per block and the number of components
1 2 3 4 5 6 | allCommonDistinctive(
vars,
ncomp,
allPermutations = TRUE,
filterZeroSegments = TRUE
)
|
vars |
A vector with integers indicating the number of variables per data block. For example, c(10, 20, 5), the first 10 variables belong the first block, the next 20 variables belong to the second block, the next 5 variables belong to the third block |
ncomp |
The number of components that are of interest |
allPermutations |
A boolean with default |
filterZeroSegments |
A boolean with default |
A list with all common and distinctive structures
1 2 3 | allCommonDistinctive(vars = c(10, 5, 5), ncomp = 3, allPermutations = TRUE, filterZeroSegments = TRUE)
allCommonDistinctive(vars = c(10, 5, 5), ncomp = 3, allPermutations = FALSE, filterZeroSegments = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.