Venn Diagram output is missing
0
0
Entering edit mode
18 months ago
rufusek500 • 0

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 • 784 views
ADD COMMENT
1
Entering edit mode

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))
ADD REPLY
0
Entering edit mode

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

ADD REPLY
0
Entering edit mode

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

ADD REPLY
0
Entering edit mode

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

ADD REPLY
0
Entering edit mode

It worked, thanks

ADD REPLY

Login before adding your answer.

Traffic: 2037 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6