I wrote the following code:
full_list = [0, 10**3, 10**6, 10**9, 10**12, 10**15]
list1 = []
list2 = []
list3 = []
for hash_power in full_list:
x1 = Calc1()
list1.append(x1)
x2 = Calc2()
list2.append(x2)
x3 = Calc3()
list3.append(x3)
fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot(full_list,list1,'r-->',full_list,list2,'g--o',full_list,list3,'b--o')
plt.show()
When the figure is generated, the distribution on the x-axis only produces the first and last point, ignoring all the points from the full_list in the middle.
I know the range is really big but is there a way to display it?