Skip to main content

All Questions

Tagged with
1 vote
2 answers
27 views

eulerr venn diagram missing small intersection

I am trying to graph a proportional Venn diagram with eurlerr, however the final graph is missing the A&C intersection. A = 9, B = 2, C = 0, "A&B" = 28, "B&C" = 4, &...
user26384605's user avatar
0 votes
1 answer
124 views

Draw multiple 2 by 2 Venn diagram, from a list with multiple gene sets in R

I have a list with multiple gene sets, let's say: genes <- paste("gene",1:1000,sep="") x <- list(A = sample(genes,300), B = sample(genes,525), C = ...
B_slash_'s user avatar
  • 345
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
1 answer
87 views

eulerr plot does not work when executed inside a function

I want to create an euler plot inside a function with the eulerr package: library(eulerr) test <- function(listA,listB,file,labels,title){ euler <- euler(list("A"=listA, "B&...
justinian482's user avatar
  • 1,065
4 votes
1 answer
922 views

How to change the label position when plotting venn diagram from eulerr package in R?

I am trying to create a scaled venn diagram using the eulerr package in R. My Code is below: plot(euler(c( "LUTS"=98, "Symptoms of UTI"=46, "Positive urine culture"=39, ...
Kathleen M's user avatar
0 votes
0 answers
328 views

How to change the legend position from a Venn Diagram using eulerr package?

I am using the eulerr package and I want to change the legend position of my plot. I have been able to change it to the right, left, up, down... But I cannot change it to the top right. library(eulerr)...
emr2's user avatar
  • 1,660
3 votes
2 answers
864 views

How to add count values in venn diagram for more than 6 sets?

I used following code to generate the sets for more than 5 groups: library(venneuler) H=list('ASD'=c("SCN3A", "TSC2", "RASSF8", "XDH", "CNTN5", "...
user avatar
1 vote
1 answer
1k views

How can I make the legend horizontal in the euler plot in R?

I'm having difficulty styling this euler plot. One of my main issues is that I'd like the legend to be on the bottom, but display the variables horizontally. They look strange stacked vertically. If ...
Marissa Fahlberg's user avatar
2 votes
2 answers
358 views

Wrong colors for Venn diagram when the area of one circle is 0

Why the color changes when the area of one circle is 0 ("A" = 0) compared to if it is 0.1 ("A" = 0.1) --> compare example 1 and 2. Also if A and B is 0, the circle is black ...
titeuf's user avatar
  • 143
1 vote
1 answer
500 views

Is there a way to change background color or color the inverse of the input sets?

I'm working on a shiny app to let students explore the basic probability equations and notation with dynamic Euler (Venn) diagrams responding to changes in probability and displaying the intersection ...
naita's user avatar
  • 13
1 vote
1 answer
346 views

Unable to change colors in eulerr

I have three lists of genes for which I am attempting to plot the euler plots using eulerr in R. I'm having trouble figuring out why the code provided here isn't allowing me to change the colors of ...
Anurag N. Sharma's user avatar
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
2 votes
1 answer
695 views

Color palettes in the eulerr package

I really like the eulerr package. It makes beautiful plots. I don't, however, have an eye for color, and would therefore like to use existing color schemes like "viridis" or "magma." Is this possible, ...
strugglebus's user avatar
0 votes
1 answer
1k views

Scaled plotting of multiple pairwise Venn diagrams in R

I want to plot >50 Venn/Euler diagrams of two sets each to scale. It is necessary that not only the overlap of the two sets and the set size themselves should scale but also the size of the individual ...
atreju's user avatar
  • 985
2 votes
3 answers
4k views

R eulerr package - Displays wrong euler Diagram

I am trying to create an Euler diagram with the R package eulerr. I am using the following code: vd <- euler(c(A = 54, B = 22, C = 53, D= 26 ,"A&B" = 20, "A&C" = 29, "A&D"=10, "B&C"...
herbertus's user avatar

15 30 50 per page