js229 / Vennerable

Vennerable provides Venn diagrams in R. It displays Venn and Euler diagrams for up to 9 different sets and using a variety of geometries. It allows the display of area-weighted Venn diagrams and allows fine graphical control over the result.
90 stars 39 forks source link

Can't add to the plot after the fact... #44

Open nickschurch opened 7 years ago

nickschurch commented 7 years ago

I like the package but I'm struggling to add text or other plot elements to the plot after plot(overlaps) is called. I get the error:

> overlaps<- Venn(sets)
> plot(overlaps, show=list(FaceText=FALSE, SetLabels=TRUE))
> text(0,0,"test")

Error in text.default(0, 0, "test") : plot.new has not been called yet

I tried a few suggested workarounds for this error from google but to no avail, so any assistance here would be appreciated.