We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It would be helpful to have the ability to add custom point shapes (by providing an SVG of them, for example).
The text was updated successfully, but these errors were encountered:
Similar request: LPK-112.
Sorry, something went wrong.
We could start with a simpler variant where the shape of a point is specified by a Shapely object, for example:
r = 2/sqrt(3) hexagon = Polygon([ (r, 0), (r/2, 1), (-r/2, 1), (-r, 0), (-r/2, -1), (r/2, -1) ]) df = pd.DataFrame({'x': [0], 'y': [0], 's': [hexagon]}) ggplot(df, aes('x', 'y')) + \ geom_point(aes(shape='s'), size=50) + \ scale_shape_identity() + coord_fixed()
Output now:
Expected:
No branches or pull requests
It would be helpful to have the ability to add custom point shapes (by providing an SVG of them, for example).
The text was updated successfully, but these errors were encountered: