Eventhough I get a proper diagram (yeay!), I also get this warning each time I run ggplot:
FutureWarning: Attribute 'is_copy' is deprecated and will be removed in a future version.return object.__setattr__(self, name, value)
I use Python 3.6 and:
from plotnine import * #Vers. 0.3.0
import pandas as pd #Vers. 0.23.1
from pandas import DataFrame
The ggplot code is:
g = ggplot(df, aes(x='date', y='meanDN')) + geom_point()
print(g)
Should I be concerened?