Let's plot make a plot

packages = ["pandas", "matplotlib"] import matplotlib.pyplot as plt import pandas as pd df = pd.DataFrame() df['x'] = [1,2,3,4,5,6,7,8,9] df['y'] = [1,2,3,4,5,6,7,8,9] df.head() df.info() fig, ax = plt.subplots() df.plot("x", "y", ax=ax) display(fig, target="plot")