python 的 ggplot2 是否不再支持通过 plotnine?
Is ggplot2 for python via plotnine not supported anymore?
尽管我得到了正确的图表(是的!),但我每次 运行 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)
我应该担心吗?
警告来自对 pandas 库的调用。 plotnine 仍然使用 pandas 的功能,该功能已被弃用,将在未来版本中删除。
Plotnine 正在积极开发中,此错误已 fixed already。
plotnine 0.3.0 之后还没有新版本,所以你必须从 GitHub 安装开发版本或者等待新版本来让警告消失。
尽管我得到了正确的图表(是的!),但我每次 运行 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)
我应该担心吗?
警告来自对 pandas 库的调用。 plotnine 仍然使用 pandas 的功能,该功能已被弃用,将在未来版本中删除。
Plotnine 正在积极开发中,此错误已 fixed already。
plotnine 0.3.0 之后还没有新版本,所以你必须从 GitHub 安装开发版本或者等待新版本来让警告消失。