import matplotlib.pyplot as plt import seaborn as snstips = sns.load_dataset("tips")sns.scatterplot(data=tips, x="total_bill", y="tip") plt.show()