Skip to main content

Questions tagged [venn-diagram]

For questions about Venn diagrams.

venn-diagram
110 questions with no upvoted or accepted answers
7 votes
0 answers
3k views

Venn Diagram in Dot

I have been trying to implement a Venn Diagram in Dot. Whilst Venn Diagrams probably aren't that useful in Dot, it's mostly so I can use it as a very basic building block. I have provided some ways ...
Peilonrayz's user avatar
  • 3,706
6 votes
2 answers
10k views

How to plot a 3 set proportional Venn/Euler diagram?

I have a set of microarray data, and I would like to represent it according to the attached figure (done with PowerPoint). I have tried the various packages available for R (VennDiagram, venneuler, ...
Strohmi's user avatar
  • 523
5 votes
0 answers
1k views

Creating Interactive Venn Diagram in R

I am working on R to build interactive Venn Diagram. I am currently using the VennDiagram library to do this but to make an interactive Venn diagram is not possible with this library. Can anyone help ...
Abhishek Agnihotri's user avatar
5 votes
1 answer
874 views

Annotate venn diagram in R

My question involves how to annotate a venn diagram with the actual values in addition to the default counts, using any R package. Below is a minimal example of the data: list.items <- list(...
amo's user avatar
  • 3,150
4 votes
0 answers
431 views

Rotate Venn diagram plot made with the eulerr package

I'm able to make a Venn diagram like below with the eulerr package in R with this code. However, the plot is rotated vertically. How can I rotate the plot so that it's wider than taller? library(...
Harry M's user avatar
  • 1,968
3 votes
0 answers
313 views

How one can draw a similar squared Venn diagram figure?

I'm wondering how could I draw a Venn diagram like this one? Some dummy data: A <- sample(1:1000, 400, replace = FALSE); B <- sample(1:1000, 600, replace = FALSE); C <- sample(1:1000, 350, ...
Marie-Eve's user avatar
  • 575
3 votes
0 answers
2k views

Venn diagram in R by taking a matrix as input

Suppose I have 4 sets A,B,C,D each having 40 elements. I don't know the elements of these 4 sets but i know how many elements are common among these sets. The matrix which shows the number of common ...
bioinformatician's user avatar
2 votes
1 answer
268 views

Remove intersections with size 0 from VennDiagram produced by "Eulerr" in R

Was trying to draw a proportional VennDiagram in R using package "Eulerr". However, this package produces intersections with size "0" which I want to remove. Code to reproduce the ...
ZhuYi Wang's user avatar
2 votes
0 answers
545 views

R: venn.diagram font size equivalent to ggplot2

Is there any way to choose same font size in venn_diagram diagram than in ggplot2 charts? In venn_diagram the font size is determined by the percents. Thanks a lot! For example, I have venn diagram ...
arto's user avatar
  • 71
2 votes
0 answers
5k views

GGVENN: how to fix the warning message - guides(<scale> = FALSE)` is deprecated

I was using the ggvenn function without any problems before, but I recently got this error messsage with the same code. Please find an example that give me the same wrning message. A=c("blue&...
Aurelia Kurtis's user avatar
2 votes
1 answer
984 views

Change label color of venn diagram with venn with/whithout ggplot2

I want to plot a venn diagram using R. For this purpouse, I'm using venn package, because allows to accepts more than 4-5 groups (as the majority packages that I've found). The problem comes when I ...
Archymedes's user avatar
2 votes
0 answers
291 views

Limma's vennDiagram doesn't plot the values

The basic vennDiagram plot works very well. But I'm trying to show the percentage instead of amount like this vennDiagram(vennCounts( df)/5000*100, circle.col = 1:4) It works with 2 and 3 sets: ...
Péter P's user avatar
2 votes
1 answer
690 views

R: Group intersections in circos plots showing extra band with variable values

I have a data frame that looks like the following: set.seed(1) mydf <- data.frame() for (g in LETTERS[1:4]){ m <- data.frame(Group=g, Gene=paste(sample(letters[1:4],25,...
DaniCee's user avatar
  • 2,859
2 votes
0 answers
2k views

Making a list of lists into a Venn Diagram

I manipulated a pandas data frame in a way such that I have created a list of lists. For the sake of simplicity lets pretend it is a list of list of numbers (in reality they are strings). I would ...
Tank's user avatar
  • 521
2 votes
0 answers
361 views

R ‘VennDiagram’ - Equal size ellipses

Here is the example from the VennDiagram documentation: venn.plot <- draw.quad.venn( area1 = 80, area2 = 80, area3 = 80, area4 = 80, n12 = 44, n13 = 27, n14 = 32, n23 = 38, n24 ...
Kevin's user avatar
  • 21

15 30 50 per page
1
2 3 4 5
8