41 questions
Best practices
1
vote
1
replies
69
views
Visualizing percentages values in Euler diagrams in R
I will use Euler diagrams (from the eulerr package) to visualize A, B, and the intersections of A and B. My data points are A: 21%, B: 24%, and “A&B”: 14%, and my goal is to visualize all three ...
0
votes
1
answer
64
views
Euler plot from .csv data
I am using eulerr to investigate Euler plots in my data but I am having difficulty getting them to work without a lot of manual transcription. For example, I have the following dummy dataset:
A
B
C
A&...
2
votes
3
answers
137
views
Export euler plot to powerpoint
I have an euler plot created with eulerr package.
Sample data:
fit <- euler(c(
"A" = 10000,
"B" = 7000,
"A&B" = 600))
plot(fit,
quantities = list(...
1
vote
2
answers
230
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, &...
0
votes
1
answer
199
views
How to create a panel layout of plots from the eulerr [r] package
I am using the eulerr package to make venn diagrams/euler diagrams. However, I would like to add these plots to a panelled figure and I can't figure out how. Each time I make the euler plot, it ...
0
votes
1
answer
266
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 = ...
0
votes
0
answers
92
views
Generating higher quality/less 'fuzzy' Venn diagrams with eulerr
I am trying to generate a high-resolution Venn diagram. I have used package eulerr. When I run the following code:
library(eulerr)
VennDiag <- euler(c("Drug and alcohol services" = 312, &...
1
vote
1
answer
76
views
Change logic from vector <float> to only float - Euler
I have an implementation of Eulers formula for estimating a function. The type is array format is vector but because of a later code the arguments passed need to be normal float. Wondering how to ...
3
votes
1
answer
502
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 ...
2
votes
1
answer
211
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&...
0
votes
0
answers
137
views
eulerr package in r display wrong fittings
I am making a 4 dimensional euler diagram. All 4 groups have unique proportions but somehow eulerr package drew one group inside another group.
Here is the input:
glvenn_d <- c("Ato_gl" = ...
4
votes
1
answer
2k
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,
...
0
votes
1
answer
146
views
R Euler Plot Basic Questions
My question is about the inputs into library(eulerr) in r. I am trying to plot something I think would be simple but I am having trouble and it stems from my lack of knowledge of r and this library.
...
-1
votes
1
answer
69
views
pascalTriangle and Venn Diagrams
I have downloaded results from scopus of papers by doing various queries for each topic. The downloaded singleton papers are identified by EID. I would like to see where the intersections are, i.e., ...
0
votes
0
answers
369
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)...