Plot logarithmic axes with matplotlib in python

I want to plot a graph with one logarithmic axis using matplotlib. I’ve been reading the docs, but can’t figure out the syntax. I know that it’s probably something simple like ‘scale=linear’ in the plot arguments, but I can’t seem to get it right Sample program: import pylab import matplotlib.pyplot as plt a = [pow(10, … Read more