-
Notifications
You must be signed in to change notification settings - Fork 2k
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
POC: Boilerplate functions #6143
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm super excited to see this develop! (esp. for Stats!)
programatically constructing function bodies
I don't have a perfect solution (not thoroughly tested beyond the example) but I thought I'd just throw in some ideas for that, in case the PR will eventually need to do this before it's ready to merge. (I only looked at constructing the layer()
expression - check
feels complicated at a more fundamental level?)
Thanks June! Co-authored-by: June Choe <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for considering my suggestions! Following up w/ just 2 more things I noticed
Co-authored-by: June Choe <[email protected]>
This PR aims to (eventually) fix #6142.
Briefly, it introduces
boilerplate()
that can take in a ggproto class and spit out a constructor.This PR is a proof-of-concept because it probably merits some discussion whether we would like to go down this road. As such, the PR only implements
boilerplate()
for Geoms, but can be expanded in the future for Stats and Scales as well, I think.The
boilerplate()
function is used for amenable functions, but not more complex ones. For example,geom_text()
orgeom_boxplot()
perform input checking that we cannot currently easily fit into the boilerplate code.A few notes about the PR:
boilerplate()
takes the class as input. These are the largest diffs.lineend
that would be accepted by theGeom$draw_panel/group()
method, but were set as arguments to the constructor. These are now all exposed.draw_key_polygon()
now actually gets the line settings (lineend, linejoin, linemitre) from the geom instead of having to default these.