다음 코드 ( test_seaborn.py
)를 시도했습니다 .
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
matplotlib.style.use('ggplot')
import seaborn as sns
sns.set()
df = sns.load_dataset('iris')
sns_plot = sns.pairplot(df, hue='species', size=2.5)
fig = sns_plot.get_figure()
fig.savefig("output.png")
#sns.plt.show()
하지만이 오류가 발생합니다.
Traceback (most recent call last):
File "test_searborn.py", line 11, in <module>
fig = sns_plot.get_figure()
AttributeError: 'PairGrid' object has no attribute 'get_figure'
나는 최종 output.png
이 존재할 것으로 예상 하고 다음과 같이 보입니다 :
문제를 어떻게 해결할 수 있습니까?
seaborn 0.9
:sns.regplot(x='age', y='income', data=pd.read_csv('income_data.csv')).get_figure().savefig('income_f_age.png')
Python 2.7.12
및seaborn 0.7.1