Description Usage Arguments Details Value References Examples
View source: R/corr_coef_class.R
The correlation between features and a set of continuous factor are calculated. Multiple-test corrected p-values are used to indicate whether the computed coefficients may have occurred by chance.
1 |
alpha |
(numeric) The p-value cutoff for determining significance. The default is |
mtc |
(character) Multiple test correction method. Allowed values are limited to the following:
The default is |
factor_names |
(character) The name of sample meta column(s) to use. |
method |
(character) Type of correlation. Allowed values are limited to the following:
The default is |
... |
Additional slots and values passed to |
This object makes use of functionality from the following packages:
stats
A corr_coef
object.
R Core Team (2020). R: A Language and Environment for Statistical Computing. R Foundation for Statistical Computing, Vienna, Austria. https://www.R-project.org/.
1 2 3 4 5 6 7 8 9 10 11 | D = MTBLS79_DatasetExperiment(filtered=TRUE)
# subset for this example
D = D[,1:10]
# convert to numeric for this example
D$sample_meta$sample_order=as.numeric(D$sample_meta$sample_order)
D$sample_meta$sample_rep=as.numeric(D$sample_meta$sample_rep)
M = corr_coef(factor_names=c('sample_order','sample_rep'))
M = model_apply(M,D)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.