그래프 기본 설정
API reference
폰트 설정 및 그래프 크기 설정
%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np
from matplotlib import font_manager, rc
font_path ="C:/Windows/fonts/malgun.ttf"
font_name = font_manager.FontProperties(fname=font_path).get_name()
matplotlib.rc('font',family=font_name)
plt.rcParams["font.size"] = 20
plt.rcParams["figure.figsize"] = (30,10)
import seaborn as sns
sns.set_style('darkgrid')
plt.savefig(file, dpi)
Color
색상 | 입력 | 약어 |
---|
파란색 | blue | b |
초록색 | green | g |
빨간색 | red | r |
노란색 | yellow | y |
검은색 | black | K |
Marker style
Line style
선 스타일 | 입력 |
---|
실선 | - |
파선 | -- |
파선 - 점선 | -. |
점선 | : |
Label
plt.xlabel(label, **kwargs)
plt.ylabel(label, **kwargs)
Title
plt.title(label, loc)
Tick
x축, y축 눈금 설정
plt.xticks(ticks, labels)
plt.yticks(ticks, labels)
Legend
plt.legend(loc)
문자 입력 | 숫자 입력 |
---|
"upper right" | (1) |
"upper left" | (2) |
"lower left" | (3) |
"lower right" | (4) |
"right" | (5) |
"center" | (10) |
축 범위
plt.xlim(left, right)
plt.xlim(bottom, top)