I'm having trouble finding useful documentation or examples of doing multiple density plots in plotnine.
I've tried several approaches but still get an error.
p = (ggplot(data=gg,aes(x='u',color='x')) + geom_density()
print(p)
TypeError: '>=' not supported between instances of 'list' and 'int'
I've checked the data types on the dataframe. They are a series from original numpy arrays.