Re: [R] from data.frame to Venn diagram

2012-02-27 Thread Rui Barradas
Hello, Lara Poplarski wrote > > Hello All, > > I have a data.frame with this structure: > > m <- matrix(sample(c(rep('yes', 10, replace = TRUE), rep('no', 10, > replace = TRUE), NA), 500, replace = TRUE), nrow = 100, ncol = 5) > colnames(m) <- colnames(m, do.NULL = FALSE, prefix = "col") > m <

Re: [R] from data.frame to Venn diagram

2012-02-27 Thread Daniel Nordlund
> -Original Message- > From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] > On Behalf Of Lara Poplarski > Sent: Monday, February 27, 2012 5:24 PM > To: r-help@r-project.org > Subject: [R] from data.frame to Venn diagram > > Hello All, >

[R] from data.frame to Venn diagram

2012-02-27 Thread Lara Poplarski
Hello All, I have a data.frame with this structure: m <- matrix(sample(c(rep('yes', 10, replace = TRUE), rep('no', 10, replace = TRUE), NA), 500, replace = TRUE), nrow = 100, ncol = 5) colnames(m) <- colnames(m, do.NULL = FALSE, prefix = "col") m <- as.data.frame(m) I need to generate a Venn dia