# seabornをインポート
import seaborn as sns
# data、x軸、y軸を設定
sns.boxplot(data=train(DataFrame型), x=’x軸列名’, y=’y軸列名’)
# 可視化結果を表示
plt.show()

これで書ける