I currently have a plot for my data, with a vertical line in red marking the point where "average number of spins" is. I was wondering if is possible to change the marker for the points for "millionspins,millions" into a blue/black thin cross, and to place major/minor gridlines onto both axis? All the available help online seems to draw from modules that we do not have. Also how do you label the red line that I have plotted to be "average number of spins"?
Many thanks.
matplotlib.pyplot.scatter(millionspins,millions)
plt.xlabel("Number of spins")
plt.plot([averageiterations,averageiterations],[1000000,1500000],'r-')
plt.xlim(0,max(millionspins))
plt.ylim(1000000,max(millions))
plt.ylabel("Bank")
plt.xlim(0,max(millionspins))
plt.ylim(1000000,max(millions))
show()