I want the tiles around the radar chart (eg mpg
, cyl
, disp
, etc) to be a different color. Is there a way to do this in ggradar? I have tried to do this with the theme()
argument but doesn't seem to be working. There is an argument within ggradar
to change font but not color.
mtcars %>%
add_rownames( var = "group" ) %>%
mutate_each(funs(rescale), -group) %>%
tail(4) %>% select(1:10) %>%
ggradar() +
theme(
axis.title = element_text(color = 'red')
)