-
Notifications
You must be signed in to change notification settings - Fork 116
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
Enhancements for *dply #188
Enhancements for *dply #188
Conversation
…t: .id); fixes # 140; fixes # 107
…t: .n); fixes # 142
Thanks! What do you do think about something similar for |
Unfortunately changing .id to a factor breaks ggplot2. |
Could you please provide more detail? Which part of ggplot is broken? I came up with this issue because I frequently have the following situation:
Previously, this resulted in a sorting of the facets, but mostly I want to specify the sequence of facets once (in step 1). As a workaround, I have invented a function |
Facetting, because it expects a character, and it's now a factor. I think it's a reasonable change, but plyr is used by so many packages that even changes that make sense may cause bugs in existing, and that's something I'd prefer to avoid if possible. |
I have searched ggplot for |
A simple test reveals the error: http://rpubs.com/krlmlr/11768 Of course we could patch |
That seems reasonable to me. Would you mind submitting a patch? |
Done: #195 |
Rebased and edited #177.