본문 바로가기
Python_Wiki/Python_Library

matplotlib / seaborn 고화질 설정

by yj-data 2025. 7. 14.
%config InlineBackend.figure_format = 'retina'
#example
%config InlineBackend.figure_format = 'retina'
sns.barplot(data=df, x='species', y='body_mass_g')
plt.title('펭귄의 종별 몸무게')
plt.show()