x = [101.52762499 105.79521102 103.5158705 93.55296605 108.73719223 98.57426097 98.73552014 79.88138657 91.71042366 114.15815465]
y = [107.83168825 93.11360106 102.49196148 97.84879532 114.41714004 97.39079067 111.35664058 76.97523782 88.63047332 90.11216039]
I would like to do a scatter plot whereby it displays the regressed line with x-values span across 100 intervals evenly, from the minimum value to maximum value of x data.
What code do I need to use to change the x axis?
m,c = np.polyfit(x,y,1) #this is to find the best fit line
plt.plot(x, m*x + c) # this to plot the best fit line
plt.plot(x,y,'o') # this is to plot in
I tired using plt.xticks(0,200)
but it gives me an error message
TypeError: object of type 'int' has no len()