
vennCounts(x, include="both")
vennDiagram(object, include="both", names=NULL, mar=rep(1,4), cex=c(1.5,1,0.7), lwd=1, circle.col=NULL, counts.col=NULL, show.include=NULL, ...)
TestResults
matrix.
This is numeric matrix of 0's, 1's and -1's indicating significance of a test or membership of a set.
Each row corresponds to a gene and each column to a contrast or set.
Usually created by decideTests
.TestResults
matrix or a VennCounts
object produced by vennCounts
."both"
for all differentially expressed genes, "up"
for up-regulated genes only or "down"
for down-regulated genes only. If include=c("up","down")
then both the up and down counts will be shown. This argument is ignored if object
if object
is already a vennCounts
object.par
.par
.par
for possible values.include
. See par
for possible values.include
should be printed on the plot. Defaults to FALSE
if include
is a single value and TRUE
otherwiseplot
vennCounts
produces an object of class "VennCounts"
.
This contains only one slot, which is numerical matrix with 2^ncol{x}
rows and ncol(x)+1
columns.
Each row corresponds to a particular combination of set memberships.
The first ncol{x}
columns of output contain 1 or 0 indicating membership or not in each set.
The last column called "Counts"
gives the number of rows of x
corresponding to that combination of memberships.vennDiagram
produces no output but causes a plot to be produced on the current graphical device.
x
corresponds to a contrast or set, and the entries of x
indicate membership of each row in each set or alternatively the significance of each row for each contrast.
In the latter case, the entries can be negative as well as positive to indicate the direction of change.vennCounts
can collate intersection counts for any number of sets.
vennDiagram
can plot up to five sets.
Y <- matrix(rnorm(100*6),100,6)
Y[1:10,3:4] <- Y[1:10,3:4]+3
Y[1:20,5:6] <- Y[1:20,5:6]+3
design <- cbind(1,c(0,0,1,1,0,0),c(0,0,0,0,1,1))
fit <- eBayes(lmFit(Y,design))
results <- decideTests(fit)
a <- vennCounts(results)
print(a)
mfrow.old <- par()$mfrow
par(mfrow=c(1,2))
vennDiagram(a)
vennDiagram(results,
include=c("up", "down"),
counts.col=c("red", "blue"),
circle.col = c("red", "blue", "green3"))
par(mfrow=mfrow.old)
Run the code above in your browser using DataLab