Using the data frame
df = pd.DataFrame({ \"date\" : [\"2018-01-01\", \"2018-01-02\", \"2018-01-03\", \"2018-01-04\"], \"column1\" : [555,525,532,585]
As seaborn is built on the top of matplotlib, you can use its power:
seaborn
matplotlib
import matplotlib.pyplot as plt sns.lineplot(data=df.column1, color="g") ax2 = plt.twinx() sns.lineplot(data=df.column2, color="b", ax=ax2)