복잡한 데이터 표현하기¶6-1. 객체지향 API로 그래프 꾸미기¶- pyplot 방식과 객체지향 API 방식¶In [4]:import matplotlib.pyplot as pltplt.rcParams['figure.dpi'] = 100In [6]:plt.plot([1,4,9,16])plt.title('simple line graph')plt.show()In [8]:fig, ax = plt.subplots()ax.plot([1,4,9,16])ax.set_title('simple line graph')fig.show()/var/folders/3w/0y55k0y53pg1dvg3p_cqn81m0000gn/T/ipykernel_46646/4206167288.py:4: UserWarning: FigureCanvas..