2

尽管我得到了正确的图表(是的!),但每次运行 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)

我应该担心吗?

4

1 回答 1

2

警告来自对 pandas 库的调用。plotnine 仍然使用 pandas 已被弃用的功能,并将在未来的版本中删除。

Plotnine 正在积极开发中,并且已经修复了这个错误。

plotnine 0.3.0 之后还没有新版本,因此您必须从 GitHub 安装开发版本或等待新版本才能使警告消失。

于 2018-07-02T14:07:07.520 回答