Using library(VennDiagram), the venn.diagram function formats category names and values in strange way when one of the variable is integer(0). For example, try following test code.
a <- 1:11;
b <- integer(0);
venn.diagram(
list( A = a, B = b),
filename = "Bug.tiff",
category.names = c("Variable A", "Variable B")
);
Using library(VennDiagram), the venn.diagram function formats category names and values in strange way when one of the variable is integer(0). For example, try following test code.
a <- 1:11; b <- integer(0); venn.diagram( list( A = a, B = b), filename = "Bug.tiff", category.names = c("Variable A", "Variable B") );
METADATA