I want to create a graph in python that has the following y-ticks but I am having a hard time. I have tried creating a variable and multiplying it by 10 but it doesn't seem to work:
x=0.001
df.plot(kind='bar', ylabel='Minimum Inhibitory Concentration', yticks=(x,1000,x*10))
Any ideas?