Description Usage Arguments Value References Examples
View source: R/plot_component.R
Visualize the weights of components to help with the feature selection.
1 | plot_component(tica.o, component, nt.idx, tp = 0)
|
tica.o |
The TICA result object, which can be obtained by function *DoTICA*. |
component |
The component ID to be plotted out. |
nt.idx |
The first mode ID to be plotted out. |
tp |
An index vector labeling the true positive features associated with a factor of interest, which we know drives joint variation in the data, and which therefore the algorithm should capture. These indices must be in the order of the entries in the 3rd mode of the data$A object, or alternatively in the same order as the rows of the individual data matrices in data$L. |
weight.p
weight_abs.p
weight_prime.p
weight_prime_abs.p
Teschendorff AE, Han J, Paul D, Virta J, Nordhausen K. Tensorial Blind Source Separation for Improved Analysis of Multi-Omic Data. Genome Biology (2018) 19:76.
1 2 3 4 5 6 7 8 9 10 | data(buccalbloodtensor);
Dim.l <- EstDim(buccalbloodtensor$data);
dim <- Dim.l$dim;
tica.o <- DoTICA(Data = buccalbloodtensor$data, dim = dim, method = "FOBI");
cp13 <- plot_component(tica.o = tica.o, component = 12, nt.idx = c(1,2), tp = seq(501,562));
cp13$weight.p;
cp13$weight_abs.p;
cp13$weight_prime.p;
cp13$weight_prime_abs.p;
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.