Description Usage Arguments Value Note Author(s) Examples
plot a venn graphics it wrap VennDiagram and make venn more simple
| 1 2 3 | 
| data | a list for your group data | 
| fillColor | a vector for fill your venn plot default  | 
| fileName | a character for your outputfile name | 
| main | a character for the title in your venn plot default  | 
| fontSize | a number for your label size default  | 
| fontColor | a character for your label color default  | 
| saveType | a character for your save file type png or tiff | 
| Margin | a number for your venn margin more Margin less size in your venn graphics | 
a tiff or png file for your venn graphics
Since the venn.diaram() is not support pdf type file so your fillName not allow pdf type file
chencheng <chencheng@onmath.cn>
| 1 2 3 4 5 6 7 | oneName <- function() paste(sample(LETTERS,5,replace=TRUE),collapse="")
geneNames <- replicate(1000,oneName())
GroupA <- sample(geneNames,400,replace = F)
GroupB <- sample(geneNames,300,replace = F)
GroupC <- sample(geneNames,200,replace = F)
GroupD <- sample(geneNames,500,replace = F)
venn_plot(data=list(A=GroupA,B=GroupB,C=GroupC,D=GroupD),fileName='test_venn_plot.tiff')
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.