Plot customized venn diagram for variance partitioning

Hey,

I have done variance partitioning with four groups of variables and now try to plot the results in a venn diagram using ggplot or other packages. So I already have all fractions to be displayed and only want to draw it - but I can only find packages such as ggVennDiagram where list of data are used for calculating the fractions first. Do you know any package where the values of each fraction can be changed manually? In the ggVennDiagramm there is some kind of function called "VennPlotData", but I can't find a detailed description of it.

This function of vegan shows the plot I'm looking for and I already calculated all fractions [a] - [o]
vegan::showvarparts(4)

I would be very happy for any information!
Thanks!
Nele

add your labels to this;

my_data <- scales::comma(c((1:15)/100,.2),accuracy = 0.01)
vegan::showvarparts(4,labels = my_data)
1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.