How to draw a radar plot in ggplot using polar coordinates?
问题 I am trying to use ggplot to draw a radar-chart following the guidelines from the Grammar of Graphics. I am aware of the ggradar package but based on the grammar it looks like coord_polar should be enough here. This is the pseudo-code from the grammar: So I thought something like this may work, however, the contour of the area chart is curved as if I used geom_line : library(tidyverse) dd <- tibble(category = c('A', 'B', 'C'), value = c(2, 7, 4)) ggplot(dd, aes(x = category, y = value, group