尽管我得到了正确的图表(是的!),但每次运行ggplot时,也会收到此警告:
FutureWarning: Attribute 'is_copy' is deprecated and will be removed in a future version.return object.__setattr__(self, name, value)
我使用Python 3.6和:
from plotnine import * #Vers. 0.3.0
import pandas as pd #Vers. 0.23.1
from pandas import DataFrame
ggplot代码为:
g = ggplot(df, aes(x='date', y='meanDN')) + geom_point()
print(g)
应该让我满意吗?
答案 0 :(得分:2)
警告来自对熊猫库的调用。橡皮糖仍使用已被淘汰的熊猫功能,并将在以后的版本中将其删除。
Plotnine正在积极开发中,并且此错误已fixed already。
plotine 0.3.0之后还没有新版本,因此您将不得不从GitHub安装开发版本或等待新版本发布警告。