250x250
Link
๋‚˜์˜ GitHub Contribution ๊ทธ๋ž˜ํ”„
Loading data ...
Notice
Recent Posts
Recent Comments
๊ด€๋ฆฌ ๋ฉ”๋‰ด

Data Science LAB

[Python] Mac์—์„œ Matplotlib ํ•œ๊ธ€ ๊นจ์ง ํ˜„์ƒ ํ•ด๊ฒฐ ๋ฐฉ๋ฒ• ๋ณธ๋ฌธ

๐Ÿ Python/์‹œ๊ฐํ™”

[Python] Mac์—์„œ Matplotlib ํ•œ๊ธ€ ๊นจ์ง ํ˜„์ƒ ํ•ด๊ฒฐ ๋ฐฉ๋ฒ•

ใ…… ใ…œ ใ…” ใ…‡ 2022. 9. 20. 16:48
728x90
import seaborn as sns
import matplotlib.pyplot as plt
from matplotlib import rc
%matplotlib inline

rc('font', family='AppleGothic') # font๋Š” ๋‹ค๋ฅธ ๊ฒƒ์œผ๋กœ๋„ ์„ค์ • ๊ฐ€๋Šฅ
plt.rcParams['axes.unicode_minus'] = False

 

์œ„์™€ ๊ฐ™์ด ํ•œ๊ธ€์ด ๊นจ์ง€์ง€ ์•Š๊ณ  ์ž˜ ์ถœ๋ ฅ๋œ๋‹ค

728x90
Comments