I need to make a scatter plot and I am not sure how to do this.
>Solution :
Instead of ax.plot use ax.scatter. You can, however, do it in a cleaner way as well, since you’re using pandas with your data (I believe) you can do
data.plot(x=name_of_column1, y=name_of_column2, marker="o", ls="")