I want to draw a simple line as show in this figure.
Here is what I tried but failed:
import matplotlib.pyplot as plt
x = [1,10,100,1000,10000]
y = [1,10**(-1),10**(-2),10**(-3),10**(-4)]
plt.plot(x, y,'gray',linestyle='--',marker='')
This code gives me very odd output. I need to make it same as in the figure.
I don't have all data points beside I only have those numbers in figure that I posted above.
