오늘 한 일개인과제 마무리더보기필수 5 데이터 시각화fig, axes = plt.subplots(2, 3, figsize=(15, 10))axes = axes.flatten()features = ['air_temp', 'process_temp', 'rotational_speed', 'torque', 'tool_wear']for i, feature in enumerate(features): sns.boxplot(x='machine_failure', y=f'{feature}', hue='machine_failure', data=df, ax=axes[i], palette=['steelblue', 'tomato'], legend=False) axes[i].set_title(..