# plot the data lineplt = sns.lineplot(x= 'column_x', y="column_y", data=dataframe) # Creating seaborn Title lineplt.set(title = 'Your Title') plt.show()
sns.lineplot(data=df, x="year", y="passengers")