When using ggradar long variable names don't fit the pane. Is there a way to reshape the variable names in ggradar?
Reproducible example:
library(ggradar)
suppressPackageStartupMessages(library(dplyr))
library(scales)
data <- data.frame(
group = c("A", "B", "C"),
variable_with_long_name_1 = c(0,1,0.5),
variable_with_long_name_2 = c(0,1,.5),
variable_with_long_name_3 = c(1,0,0.5)
)
ggradar(data)
This works and looks something like:
Any hints?


