AttributeError: 'Figure' object has no attribute 'subtitle'
matplotlib 혹은 seaborn으로 두개의 그래프 (ax:캔버스)를 하나의 fig(액자)에 넣을 수 있다 import matplotlib.pyplot as plt import pandas as pd s1 = pd.Series([1, 2, 3, 4]) s2 = pd.Series([5, 4, 3, 2]) fig, ax = plt.subplots(1, 2, figsize=(6, 3), constrained_layout=True) s1.plot(ax=ax[0]) s2.plot(ax=ax[1]) plt.show() 이 때 그래프 전체에 제목을 달고 싶다면 fig에 제목을 달면 된다. subtitle 함수로 fig에 제목을 달아보자 import matplotlib.pyplot as plt import pan..
2023. 5. 19.