1

I have plotted the 2nd and 3rd column from my Excel datasheet on a scatter graph using:

df.plot.scatter(x="volume", y="Cost per m^3") 
plt.title("Volume vs. Cost Analysis", size = 16)
plt.ylim((0,80000))
plt.xlim((0.4e+7,1.6e+7))

How can I annotate these points with their 1st column correspondents?

0 Answers0