This is leading on from an answer from r combine ggRadar and facet_wrap.
In the above question/answer it was shown how to use facets within ggRadar by doing something along the lines of:
ggiraphExtra::ggRadar(aes(facet = facetvar1))
This facet wraps a single variable, but is it possible to instead do the equivalent of facet_grid with two different variables (say, facetvar1 and facetvar2).
For a reprex:
ggiraphExtra::ggRadar(mtcars, aes(facet = c(cyl))) ## This works, but what if I want to facet by "gear" and "cyl"