Description Details Value Author(s) Examples
The standard boxplot function has been extended to work with the ExpressionSetIllumina
class. Moreover, it generates graphics using the ggplot2
package and can incorporate user-defined factors into the plots.
Extra factors can be added to the plots provided they are present in either the phenoData
or featureData
or the object.
A ggplot
object is produced and displayed on screen
Mark Dunning
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | if(require(beadarrayExampleData)){
data(exampleSummaryData)
subset <- channel(exampleSummaryData, "G")[,1:8]
boxplot(subset)
boxplot(subset, what="nObservations")
###You can use columns from the featureData in the plots. Here we will use the control-type
head(fData(subset))
table(fData(subset)[,"Status"])
boxplot(subset, probeFactor = "Status")
###Similarly, we group samples according to colums in phenoData
pData(subset)
boxplot(subset, SampleGroup = "SampleFac")
##Both sample and probe factors can be combined into the same plot
boxplot(subset, SampleGroup = "SampleFac", probeFactor = "Status")
##Suppose we have found differentially expressed genes between experimental conditions and want to plot their response. This can be done by first subsetting the ExpressionSetIllumina object and then using the probeFactor and SampleGroup accordingly
if(require(illuminaHumanv3.db)){
ids <- unlist(mget("ALB", revmap(illuminaHumanv3SYMBOL)))
subset2 <- subset[ids,]
boxplot(subset2, SampleGroup = "SampleFac")
boxplot(subset2, SampleGroup = "SampleFac", probeFactor = "IlluminaID")
}
}
|
Loading required package: BiocGenerics
Loading required package: parallel
Attaching package: 'BiocGenerics'
The following objects are masked from 'package:parallel':
clusterApply, clusterApplyLB, clusterCall, clusterEvalQ,
clusterExport, clusterMap, parApply, parCapply, parLapply,
parLapplyLB, parRapply, parSapply, parSapplyLB
The following objects are masked from 'package:stats':
IQR, mad, xtabs
The following objects are masked from 'package:base':
Filter, Find, Map, Position, Reduce, anyDuplicated, append,
as.data.frame, cbind, colnames, do.call, duplicated, eval, evalq,
get, grep, grepl, intersect, is.unsorted, lapply, lengths, mapply,
match, mget, order, paste, pmax, pmax.int, pmin, pmin.int, rank,
rbind, rownames, sapply, setdiff, sort, table, tapply, union,
unique, unsplit, which, which.max, which.min
Loading required package: Biobase
Welcome to Bioconductor
Vignettes contain introductory material; view with
'browseVignettes()'. To cite Bioconductor, see
'citation("Biobase")', and for packages 'citation("pkgname")'.
Loading required package: ggplot2
Welcome to beadarray version 2.24.0
Loading required package: beadarrayExampleData
Warning message:
In library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE, :
there is no package called 'beadarrayExampleData'
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.