Displaying 1 result from an estimated 1 matches for "venn_test".
Did you mean:
ren_test
2011 Dec 02
0
Save Venn-diagram (Vennerable) together with table and plot in single pdf page
...cex=2)
plot(rnorm(100),main="Random 1")
plot(rnorm(100),col="red",main="Random2")
dev.off()
And here the example of the pdf with where I try to replace the
"Random1" point plot with a Venn diagram (wrong size and position of
Venn diagram):
pdf("path/venn_test.pdf", fillOddEven=TRUE,paper="a4",
onefile=TRUE,width=7,height=10)
layout(matrix(c(1,2,2,1,2,2,3,3,3), 3, 3, byrow = TRUE),heights=c(1,1,2))
par(mar=c(6,2,2,4))
textplot(tabletext,valign="top",halign="left",cex=2)
plot(cx)
plot(rnorm(100),col="red",main...