varianceplot: Observe between-array and within-array variances.

Description Usage Arguments Author(s) Examples

Description

plots the between array and the within array variances.

Usage

1
varianceplot(iccResults, q = 1, delta = 0.5)

Arguments

iccResults

Output from the iccFun function.

q

The quantile use for ICC at which one wants to declare bead types informative. If iccQuant is a vector, then q can take any value from 1 up to the length of iccQuant.

delta

The proposed cutoff point at which a bead type should be declared informative or non-informative.

Author(s)

Anyiawung Chiara Forcheh, Geert Verbeke, Adetayo Kasim, Dan Lin, Ziv Shkedy, Willem Talloen, Hinrich WH Gohlmann, Lieven Clement.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
require(beadarrayExampleData)
data(exampleSummaryData)
exampleSummaryDatalog2 <- channel(exampleSummaryData, "G")
exampleSummaryDataNorm <- normaliseIllumina(exampleSummaryDatalog2, 
method = "quantile", transform = "none")
aaa<-na.omit(data.frame(I(rownames(exprs(exampleSummaryDataNorm))),exprs(exampleSummaryDataNorm)))
ProbeID <- aaa[,1][1:100]
    eSet <- na.omit(exprs(exampleSummaryDataNorm))[1:100,]
    stddev <- na.omit(se.exprs(exampleSummaryDataNorm))[1:100,]
    nSet <- na.omit(attributes(exampleSummaryDataNorm)$assayData$nObservations)[1:100,]
    seSet<-stddev/sqrt(nSet)
    iccResults<-iccFun(eSet,seSet,nSet,ProbeID =ProbeID ,iccQuant=c(0,0.25,0.5,1),
    diffIcc=TRUE,keepData=TRUE)
    varianceplot(iccResults,q=1,delta=0.8)

beadarrayFilter documentation built on May 2, 2019, 6:05 a.m.