I want to create a scoring plot, like those you often see in role-playing games, with positive and negative scores, using ggplot.
To do this I use geom_col
and coord_polar
. The problem is that the bars are not rectangles but trapezoids, as expected since the whole plotting space coordinates system is deformed.
Is it possible to adjust for this in order to have proper uniform bars (and add some space at the center of the plot to avoid overlapping)?
Bonus request: instead of a circular grid, is it possible to have a polygonal one, based on the number of values on the x-axis?