VennDiagram (version 1.6.20)

draw.sp.case.scaled: Draw a special Venn Diagram with Three Sets. These are the scaled cases

Description

Special case of draw.triple.venn. Internal use only.

Arguments

Value

See draw.triple.venn

Examples

Run this code
# NOT RUN {
venn.plot <- draw.triple.venn(
	area1 = 2,
	area2 = 1,
	area3 = 3,
	n12 = 1,
	n23 = 1,
	n13 = 2,
	n123 = 1,
	category = c('A', 'B', 'C'),
	fill = c('red', 'blue', 'green'),
	cat.col = c('red', 'blue', 'green'),
	cex = c(1/2,2/2,3/2,4/2,5/2,6/2,7/2),
	cat.cex = c(1,2,3),
	euler = TRUE,
	scaled = FALSE
	);
dev.off();
# }

Run the code above in your browser using DataCamp Workspace