View source: R/qtool_functions.R
pair_pearson | R Documentation |
This function calculates the Pearson's r
pair_pearson(cell, ccle, ccle.name, pvalue)
cell |
vector with bin-level copy number values of one sample |
ccle |
vector with bin-level copy number values of the cell model |
ccle.name |
name of the cell model |
pvalue |
a logical value to indicate if the empirical pvalue is calculated or not |
Pearson's r
posBins<-lapply(1,function(chr) getBinsStartsEnds(window=1000000, chr, lengthChr[chr])) ccle_cn<-getCNbins(posBins=posBins, data=cells_segcn, samples=unique(cells_segcn$sample)[1:2]) exp_cell<-as.matrix(ccle_cn[,1]) mod_cell<-as.matrix(ccle_cn[,2]) r<-pair_pearson(exp_cell,mod_cell,unique(cells_segcn$sample)[2],pvalue=FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.