Description Usage Arguments Details Value Author(s) References Examples
Autometed procedure to test the difference of copula with pairwise variables.
1 |
x1 |
Numeric matrix. Samples in row and variables in column |
x2 |
Numeric matrix. The same with x1. |
nperm |
The number of permutation. |
approx |
Logical. If set 'approx=TRUE', p-value will be approximated using generalized Parato distribution. Otherwise, no approximation of p-value. |
silent |
Logical. If FALSE, don't diplay progression message. |
The difference of coptest is that coptest.p compare bivariate dependency structure rather than full joint dependencies as the coptest. Automatically generate all pairs of bivariate copula and compare them between the two conditions.
List of two components:
tbl - data.frame consisting from varname(gene/protein names), stats(test statistic),p(p-value), p.adj(adjusted p-value).
perm.out - list for information of randomization procedure. Each element is a variable pair. pval(p-value), stat(test statistics), p.approx(approximated p-value if approx=TRUE)
stat - test statistics based on Cramér–von Mises test statistic
null - null distribution from randomization procedure
Yusuke MATSUI
Yusuke MATSUI et al.(2020) RoDiCE: Robust differential protein co-expression analysis for cancer complexome (submitted).
Clerk DJ et al.(2019) Integrated Proteogenomic Characterization of Clear Cell Renal Cell Carcinoma.Cell;179(4),964-983 e931.
1 2 3 4 5 6 7 8 | data(ccrcc.pbaf) # example data from clear renal cell carcinoma(clerk et al.2019)
data(corum.hsp.pbaf)
tumor = ccrcc.pbaf$tumor # 110 samples and 10 proteins from PBAF complex
normal = ccrcc.pbaf$normal # 84 samples and 10 proteins from PBAF complex
# perform copula test for pairwise variables.
result = coptest.p(tumor,normal,nperm=100,approx=TRUE)
result$tbl
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.