I am trying to create a circular bar plot using my data, but I could not even organize the data frame in order to do it. I have 121 seed analizes from 3 different years (column named campana), and from 4 regions of a province (column named zona). I would like to make a graph like the one in the image, using the different areas (zonas) instead of the letters A-B-C-D, and using the stacked bars to show the incidence (frequency) of fungi on each year. Each fungus frequency is in a column with the fungus name, such as A.padwickii, Microdochium, Bipolaris, etc. I don't expect you to do all the work, just the first step of helping me organize the data in the correct way.
tibble::tribble(
~muestra_n, ~campana, ~zona, ~inc_pan, ~percent_gran_m_pan, ~peso_pan, ~percent_perdida_peso, ~severidad, ~phoma, ~microdochium, ~a_padwickii, ~bipolaris, ~curvularia, ~fusarium, ~exserohilum,
16, 2, 2, 98, 14.6, 2.85, 9.90007401924501, 0.1, 0, 11, 0, 0, 0, 0, 0,
18, 2, 2, 97.1, 7.8, 1.34, 29.9991559044484, 0.44, 13, 0, 0, 0, 0, 0, 0,
19, 2, 2, 100, 14.3, 1.35, 0.0288073746879383, 0.66, 0, 16, 0, 0, 18, 0, 0,
20, 2, 1, 100, 9.6, 1.49, 1.64930877284015, 0.09, 0, 12, 1, 2, 44, 0, 0,
21, 2, 1, 100, 17.9, 3.04, 1.46085792877853, 0.56, 0, 9, 0, 0, 1, 0, 0,
22, 2, 1, 100, 37.4, 2.1, 5.60829881602581, 0.6, 41, 8, 0, 0, 1, 0, 1
)