-
Notifications
You must be signed in to change notification settings - Fork 14
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
Formulas should be allowed #146
Comments
see #151 |
I think this is going to be a little trickier...not 100% sure. Have to make sure plot calls plot.formula appropriately. Also, plot.factor? plot.ts? plot.data.frame? plot.function? |
I linked in the wrong issue for that last comment. I have not worked on this issue. Agree that it will be tricky. |
I think we need something like this when we look up the function, and then failover to getS3method('points',class(object), optional=TRUE) which works for class(object) == 'formula' |
|
see #159 which takes care of the first thing. |
Is this still open? What is the criteria for closing? this works gs <- gsplot() %>%
points(y~x, data=list(x=-3:3,y=-3:3))
gs what other patterns do we have? ones that look to the parent.frame for x and y as well? |
I didn't check, but does it work for lines too? That was the one thing I was going to check before closing. |
yep, it does |
The text was updated successfully, but these errors were encountered: