Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm generating a scatter plot in matplotlib. Everything works fine if I use linear scales.

But since I'm mainly interested in the lower values, I thought I'd use logarithmic scaling. However, even though I have set my x-axis limits explicitly to (0,1), the axis starts at 0.1, so i miss everything below that!

Why does the logarithmic axis not start at zero, and how can I force it to?

import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(0,1,100)
y = np.random.randint(1000, size=100)

fig = plt.figure()
ax = fig.add_subplot(1,1,1)
ax.scatter(x, y)

ax.set_xlim(0,1.2)
ax.set_ylim(0,1000)
ax.set_yscale('log')
ax.set_xscale('log')
ax.yaxis.set_major_formatter(plt.FormatStrFormatter('%1.0f'))
ax.xaxis.set_major_formatter(plt.FormatStrFormatter('%.1f'))
ax.xaxis.set_minor_formatter(plt.FormatStrFormatter('%.1f'))

# this red line at x = 0.1
ax.axvline(x=0.1,color='r')

plt.show()

Any help is greatly appreciated! Lastalda

share|improve this question

1 Answer

up vote 1 down vote accepted

Usually logarithmic axes never start at zero because there is no "good" value for log(0) on the x-axis, because log(0)==x only for x->-infinity.

share|improve this answer
@tcaswell: I took out that part you were referring to. I think his real requirements are still not 100% clear to me, probably that's why I mentioned it initially. – honk Sep 19 '12 at 15:12
The math is still wrong, log(1) = 0. Log graphs don't show 0 because log(x->0) -> -infinity – tcaswell Sep 19 '12 at 18:45
Fixed. Don't know what I was thinking. – honk Sep 19 '12 at 19:19
Still have x,0 flipped at the end of the post – tcaswell Sep 19 '12 at 19:20
Thanks, good I am only a physicist. – honk Sep 19 '12 at 19:22
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.