● subplots_adjust() : 여러개의 서브 그래프들 사이의 간격을 조정 import matplotlib.pyplot as plt from matplotlib import rc rc('font', family='Malgun Gothic') x = list(range(1,11)) y = list(range(10, 101, 10)) #2행 2열의 서브그래프 만들음 fig,axs = plt.subplots(nrows=2, ncols=2, figsize=(10, 7), sharex=True, sharey=True) #1행1열의 서브그래프 ax = axs[0][0] ax.plot(x,y) ax.set_title('선 그래프 1') #1행2열의 서브그래프 ax = axs[0][1] ax.plot(x,y, ..