plot multiple columns plotly code example
Example 1: how to plot two columns graphs in python
df.plot(x='col_name_1', y='col_name_2')
Example 2: seaborn boxplot multiple columns
>>> ax = sns.boxplot(x="day", y="total_bill", hue="smoker",
... data=tips, palette="Set3")