For my graph, I have constructed a series of points like so
for x in range (0,9):
plt.scatter(r[x],functions[x],color='green')
where r[x] and functions[x] are both arrays with 9 elements.
The scatter plot works fine; however, I was wondering if there was anyway I could draw a line instead of just some points. Or if I can draw a line through the points. Thanks in advance