-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: radar/spider coordinate system #5950
Comments
Repeating from previous discussion: |
From previous discussion: |
What I believe @dafxy is after is a spider/radar plot option, which, true, isn't possible currently I personally only think such a thing makes sense for a discrete scale so I don't know if this should be a new coordinate system altogether or something (wrongly) tacked on to |
Yes! |
Thanks Thomas, that makes the intent more clear because that is a somewhat different coordinate system than the polar ones. library(ggplot2)
set.seed(10)
df = data.frame(x = 1:10,
y = runif(10),
g = sample(c('A', 'B'))
)
ggplot(df) +
geom_polygon(aes(x=x, y=y, fill=g), alpha=.5) +
see::coord_radar() Created on 2024-06-20 with reprex v2.1.0 I'm not sure if this is worth carrying over to ggplot2, as it already exists in extension packages. |
An argument for bringing it over would be to give it the same treatment as coord_polar() got with coord_radial(), i.e. support for the new axes |
One particular nuance is that |
yes, we obviously need a better approach if we should do it... For now |
I'm going to consider this a feature request for a spider/radar coord instead of a report on the lack of options. |
See #5913. It should be reopened.
The text was updated successfully, but these errors were encountered: