Questions tagged [venn-diagram]

For questions about Venn diagrams.

377 questions
0
votes
2 answers

Venn Diagram from a list of sentences

I have a list of many sentences in Excel on each row in a column. I have like 3 or more columns with such sentences. There are some common sentences in these. Is it possible to create a script to create a Venn diagram and get the common ones between…
user150674
  • 97
  • 3
  • 10
0
votes
1 answer

Problems to load VennDiagram package for R version 2.13.0

I want use the VennDiagram package to correlate three different variables. But in R (version 2.13.0) the package is unavailable. I tried to install it from CRAN and generates this warning: Installing package(s) into…
0
votes
1 answer

About ChIPpeakAnno and makeVennDiagrams

I am using the function vennDiagrams from the ChIPpeakAnno library and I get a strange error message... venn=makeVennDiagram(RangedDataList (anna, Anna_TSS),NameOfPeaks = c("peaks","TSS"),maxgap = 100, totalTest = 1000) Warning message: In…
Anna
  • 147
  • 2
  • 4
  • 12
0
votes
2 answers

VennDiagram for data gives error?

I have the following data: Set1 : 82 Set2 : 44 Set3 : 56 Set4 : 53 1,2 : 27 1,3 : 37 1,4 : 30 2,3 : 22 2,4 : 14 3,4 : 19 1,2,3 : 18 1,2,4 : 13 1,3,4 : 20 2,3,4 : 11 1,2,3,4 : 11 1,2 means Set1 .…
Sam
  • 7,922
  • 16
  • 47
  • 62
-1
votes
1 answer

How to put/overlay values from 2 Venn diagram in R

I am trying to show 2 values on Venn diagram in R. Let's say we have a list of X and Y: X = list(cond1 = c(...), cond2 = c(...), cond3 = c(...), cond4 = c(...)) Y = list(cond1 = c(...), cond2 = c(...), cond3 = c(...), cond4 = c(...)) cond1 in X…
m.i.cosacak
  • 708
  • 7
  • 21
-1
votes
1 answer

Venn diagram notation for all other sets except one

I'm trying to find a Venn diagram notation that can illustrate data that is only in a single set. If I can select data from all the other sets, without knowing how many there are, then I can find the intersection of their complement, to select data…
FanManPro
  • 1,076
  • 1
  • 13
  • 31
-1
votes
1 answer

Adding percentages to Venn-diagram using matplotlib_venn

I have a data frame that looks like this: customerid brand 0 A2222242BG84 A 1 A2222255LD3L B 2 A2222255LD3L A 3 A2222263537U A 4 A2222265CE34 C ... ... ... 6679602 A9ZZ86K4VM97 …
Parseval
  • 503
  • 1
  • 4
  • 14
-1
votes
2 answers

Venn Diagram in React JS

I am using d3.js to create venn diagram in react js. While trying to create I use venn module. So I used below code for starting purpose var venn = require("venn"); venn.create([1,2]); console.log(venn); While running the problem am getting…
Shankar Nanda
  • 129
  • 4
  • 11
-1
votes
1 answer

Venn diagram color options

Why am I getting an orange color? And where can I get all the color options from? This is the script I use: > library(VennDiagram) >draw.pairwise.venn(28, 49, 18, category = c("_d", "_de"), lty = rep("blank", 2), fill = c("blue", "red"), cex=0,…
Goku
  • 1
  • 2
-1
votes
1 answer

How to have R Venn Diagram of two matrices differences?

I want to have a venn diagram of the differences in two matrices p.mat.p and p.mat.t which have same dimensions when alpha set. Pseudocode add item to the intersection if matches between two matrices; it can be match FALSE or TRUE; else leave the…
Léo Léopold Hertz 준영
  • 134,464
  • 179
  • 445
  • 697
-1
votes
1 answer

rJava fails with toStrin

I am using the venneuler package from R to draw Venn diagrams of my data set, which is big (53.6 MB altogether). If this helps, my code is: library(venneuler) albert <- read.table("Albert/proliferating_v_senescent.nucleotides") metilene <-…
con
  • 5,767
  • 8
  • 33
  • 62
-1
votes
2 answers

Produce nice looking Venn diagrams or other suitable graphical overlays of data sets

Who can recommend an R script for very nice looking Venn diagrams or other suitable tools for overlaying datasets in R? I would like to overlay data from 3 (up to 10) datasets.
Joanne
  • 1
  • 1
-1
votes
1 answer

How to assign name to every circle in a Venn diagram using R (Venndiagram package)

I would assign a name for every circle in a Venn diagram. I have tried to change options in category but seems this is the only set I can use. I attach my code, please where is the wrong part? goterm3 = c(1,2,3,4,5,6) goterm2…
Jack
  • 305
  • 1
  • 3
  • 10
-1
votes
2 answers

Does anyone know how to reduce the font size of numbers in vennDiagram plot?

I couldn't find a way to reduce the font size of the numbers inside the venn diagram plot. Here are the commands that i have used to produce the plot. library("limma") tissue_ven <- vennCounts(tissue_all) vennDiagram(tissue_ven, names =…
upendra
  • 2,141
  • 9
  • 39
  • 64
-2
votes
2 answers

Computing 3-way Venn diagram circle radius & position

Given the source data for a Venn diagram, e.g. A=10, B=15, C=12, A+B=5, B+C=3, A+C=2, A+B+C=1, I need to draw a Venn diagram with the circle sizes proportional to A,B, and C, and their overlap proportional to the A+B, B+C, and A+C. The graph does…
Yuri Astrakhan
  • 8,808
  • 6
  • 63
  • 97
1 2 3
25
26