import numpy as np
import matplotlib as mpl
!pip install matplotlib==3.3.4
print(f'numpy version : {np.__version__}') # version check
print(f'matplotlib version : {mpl.__version__}') # version check
plt.subplots로 바로 fig, ax를 만들 때 x,y 축 모두 길이를 2 이상으로 선언하면 2차원 배열이 만들어지기 때문에fig, axes = plt.subplots(2, 3, figsize=(13, 4))
axes = axes.flatten()