ROCAreas005: ROCs AREAS por p values interval [0,0.05]

Description Usage Arguments Value Author(s) Examples

Description

ROCAreas005 is a functions which allow plotting Area under ROCs for interval of p values [0,0.05] and for several hypothesis testing methods, shuch a several Differential Expression analysis.

Usage

1
ROCAreas005(dataRoc, resample = 10, main, DE = 0.1)

Arguments

dataRoc

a data.frame where each column stores p values from each of the hypothesis test methods which are wanted to compare. The last column store the information related to real differential expression, where "0" means no differential expression and "1" means differential expression.

resample

The number of resamplings of genes from data set in order to construct a boxplot from several samples from just one data set

main

the title of the plot

Value

a box plot with the AREA under ROC, for p values interval equal to [0,0.05], for every and each one of hypothesis test methods

Author(s)

Enrique Perez_Riesgo

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
library(compcodeR)
library(edgeR)
set.seed(123456987)
datasCI<-generateSyntheticData(dataset = "EMOresults", n.vars = 15000,samples.per.cond = 6, n.diffexp = 1500,repl.id = 1, seqdepth = 1e7,fraction.upregulated = 0.5,between.group.diffdisp = FALSE,filter.threshold.total = 1,filter.threshold.mediancpm = 0,fraction.non.overdispersed = 0)
expressiondata<-datasCI@count.matrix
TMMfac<-calcNormFactors.default(expressiondata,method = "TMM")
exprT<-t(t(expressiondata)*TMMfac)
conditions<-(datasCI@sample.annotations$condition-1)
testEMOTMM<-EMObuODlmTest(expr=exprT, condition = conditions,original = exprT,originalm=exprT)
edgeR.dgelist = DGEList(counts = expressiondata, group = factor(conditions))
edgeR.dgelist = calcNormFactors(edgeR.dgelist, method = "TMM")
edgeR.dgelist = estimateCommonDisp(edgeR.dgelist)
edgeR.dgelist = estimateTagwiseDisp(edgeR.dgelist, trend = "movingave")
edgeR.test = exactTest(edgeR.dgelist)
edgeR.pvalues = edgeR.test$table$PValue
edgeR.adjpvalues = p.adjust(edgeR.pvalues, method = "BH")
testedgeRTMM<-data.frame(FC=edgeR.test$table$logFC, PVALUE=edgeR.test$table$PValue, ADJ.PVAL=edgeR.adjpvalues)
dataRoc<-data.frame(EMO=testEMOTMM$ADJ.PVAL,edgeR=testedgeRTMM$ADJ.PVAL, DE=datasCI@variable.annotations$differential.expression)
ROCAreas005(dataRoc = dataRoc, main="ROC" Area,resample = 10,DE = 0.1)

emodoro/dEMO documentation built on May 28, 2019, 12:57 p.m.