Thanks ggpy looks real good to me! Just curious, what's with plotnine that uses the exact syntax as ggplot2? For example,
from plotnine.data import economics
from plotnine import ggplot, aes, geom_line
(
ggplot(economics) # What data to use
+ aes(x="date", y="pop") # What variable to use
+ geom_line() # Geometric object to use for drawing
)
There are several derivative packages from the original ggplot2, I'm curious as to who is the "authorized retailer" so to speak.