
plotVenn3d(x, labels = c('A','B','C'), Colors = c("red","yellow","orange","lightblue","purple","green","grey"), Title = NULL, shrink=1, rot=0)
By definition, value '000' lays outside the plotted diagram. Therefore, it will not be plotted. Because of that, if plotting 'percent' data, all values will not add up to 100 percent, missing 000's allocation.
Output file: http://elliotnoma.files.wordpress.com/2011/02/venndiagram.png
y <- c(37,29,6,232,121,77,25)
names(y) <- c("001","010","011","100","101","110","111")
labels <- c("A","B","C")
plot.new()
plotVenn3d(y, labels, Colors=rainbow(7), Title = "This is an example of a 3D Venn plot")
Run the code above in your browser using DataLab