You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Plotnine uses + operator to concatenate multiple graphical elements to keep the consistant API with R ggplot2, while python altair (https://altair-viz.github.io/user_guide/data.html#user-guide-data) uses . instead. It is known that the . operator is more natural for python Classes. Just curious and want to know how do you make + operator available for python Classes. Operator overloading or some other techniques ?
The text was updated successfully, but these errors were encountered:
There are wrappers around plotnine that convert it into a fluent API (i.e. methods that return self,so you can chain them like plot.add_point().scale_y_continous().render) such as dppd_plotnine.
Hi,
Plotnine uses
+
operator to concatenate multiple graphical elements to keep the consistant API with R ggplot2, while python altair (https://altair-viz.github.io/user_guide/data.html#user-guide-data) uses.
instead. It is known that the.
operator is more natural for python Classes. Just curious and want to know how do you make+
operator available for python Classes. Operator overloading or some other techniques ?The text was updated successfully, but these errors were encountered: