부트캠프 프로젝트 - 구독 서비스 플랫폼 데이터 분석 프로젝트문제 코드# 그래프 스타일 지정sns.set_theme(style='darkgrid',rc={'figure.figsize':(18,6)},font='Nanum Gothic')# 꺾은선 그래프 그리기sns.lineplot(data=df, x='event', y='y', marker='o', color='#A94A4A')# 막대그래프 그리기sns.barplot(datadf, x='event', y='y', color='#F4D793') plt.grid(axis='x')# 타이틀 축 라벨 작성 및 설정plt.title('그래프 타이틀', fontsize=18) plt.xlabel('x축', fontsize=10) plt.ylabel('y축', ..