1. pie 파이차트 1) 단일 파이차트 autopct, startangle, legend, locclaim = data2.iloc[:3] opinion = data2.iloc[3:] import matplotlib.pyplot as plt plt.figure(figsize=(10, 5)) plt.pie(claim['percent'], labels=claim['author_ban_status'], autopct='%1.2f%%', startangle=90) plt.legend(labels=claim['author_ban_status'], loc='best') plt.show() 2) subplot 그리기fig, ax = plt.subplots(1, 2, figsize=(10,5)) ax[..