Description Usage Arguments Details Value Examples
View source: R/quantifyViaLoadings.R
The function performWilcoxonTest
performs a Wilcoxon rank sum and
signed rank test on the loading values. The null hypothesis is that
the mean of ranks of the marker loadings is smaller or equal to the
ranks of the non-marker loadings.
The null hypothesis can be rejected with probability p
(alternative hypothesis: loadings of markers are greater than the loadings
of non-markers).
1 | performWilcoxonTest(values, markers, PC = "PC1")
|
values |
|
markers |
tbl |
PC |
character, has to be in the format |
The function performWilcoxonTest
takes as input a tibble
(tbl
) that stores the loading values in the column "value"
and the information on marker/non-marker in the column "type"
.
htest
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | library(MatrixQCvis)
library(SummarizedExperiment)
## load data set of Tanzer et al. (2020)
## source: https://www.ebi.ac.uk/pride/archive/projects/PXD014966
f <- system.file("protein_datasets/tanzer2020.RDS",
package = "apoptosisQuantification")
tanzer2020 <- readRDS(f)
## get loadings of markers and of the complete data set
values <- assay(tanzer2020)
markers <- readMarkers(type = "apoptosis")
performWilcoxonTest(values = values, markers = markers, PC = "PC1")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.