Description Usage Arguments Details Value Examples
This function computes OVESEG-test statistics.
1 2 |
y |
a numeric matrix containing log-expression or logCPM (log2-counts per million) values. Data frame or SummarizedExperiment object will be internally coerced into a matrix. Rows correspond to probes and columns to samples. Missing values are not permitted. |
group |
categorical vector or factor giving group membership of columns of y. At least two categories need to be presented. |
weights |
optional numeric matrix containing prior weights for each spot. |
alpha |
parameter specifying within-group variance estimator to be used.
'moderated': empirical Bayes moderated variance estimator as used in
|
order.return |
a logical indicating whether the order of groups will be returned. If FALSE, only the highest expressed group index is return for each probe. |
lmfit.return |
a logical indicating whether a |
OVESEG-test statistics are designed to mathematically match the definition of molecular markers:
\max_{k=1,...,K}≤ft\{min_{l \neq k}≤ft\{ \frac{μ_k(j)-μ_l(j)} {σ(j)√{\frac{1}{N_k}+\frac{1}{N_l}}} \right\}\right\}
where j is probe index, K is the number of groups, and μ_k is the mean expression of group k.
a list containing the following components:
tstat |
a vector of OVESEG-test statistics for probes. |
label |
a vector of group labels. |
groupOrder |
If |
fit |
a |
1 2 3 | data(RocheBT)
rtstat <- OVESEGtstat(RocheBT$y, RocheBT$group, alpha='moderated')
rtstat <- OVESEGtstat(RocheBT$y, RocheBT$group, alpha=0.1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.