plotnine 0.15.3
from plotnine import ggplot, aes, geom_bar
from plotnine.data import mtcars
ggplot(mtcars, aes(x="factor(cyl)")) + geom_bar()
plotnine 0.15.3
from plotnine import ggplot, aes, geom_bar
from plotnine.data import mtcars
ggplot(mtcars, aes(x="factor(cyl)")) + geom_bar()