This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Venn Diagram output is missing

Hello,

I want to save my Venn Diagram, whereas I am not able to do it, but I don't know how. I write down my command below:

I cannot find my Venn Diagram in my files.

venn.plot= venn.diagram(list(A = up6hours, B = up12hours, C = up24hours),
                        filename = tempfile( pattern = "Venn_3set_simple"), fileext = "1.tiff")
diagram venn r

Where have you checked ? Files will be deposited in getwd() current path, you can display files with list.files()

I have done it and I obtained the following output: character(0)

Could you give an example of your list ? You can share the output of dput(list(A = up6hours, B = up12hours, C = up24hours))

Try this:

grid.newpage()
setwd("full/path/to/directory")
pdf(file='venn.pdf', width = 9, height = 6)
venn.diagram(list(A = up6hours, B = up12hours, C = up24hours))

0 answers

No answers yet.

Log in to answer this question.