So i want to plot a small and close values to see the difference between them. I'm using matplotlib.pyplot.plot but the y limits are too big compare to my data which is:
2.663689859547342e-08
7.999154916053879e-09
7.99915525716199e-09
7.999155333718048e-09
code:
plt.figure(figsize=(10,12))
plt.grid()
plt.yscale('log')
plt.scatter([1,2,3,4],norm_vector)
Can i scale the y limits so that my values difference is more visible?