This plot is supposed to show differences in time, which can be both negative and positive values. Some differences are very small, while others are very large.
Can I scale the x-axis so that the resolution is very fine near x = 0 and coarse farther away from x = 0? Is it possible to have a logarithmic scale going outward from x = 0?
EDIT:
As suggested by @Evert, this solves the problem for me:
ax = gca()
...
ax.set_xscale("symlog")
and produces this plot: