Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
911 views
in Technique[技术] by (71.8m points)

python - Negative axis in a log plot

I'm plotting a log plot using matplotlib. My values go from 1 to 35.

fig=plt.figure(figsize=(7,7))
fig.subplots_adjust(top=0.75, right=0.9)
ax=fig.add_subplot(111)
ax.plot(x, y, marker='o', color='black', ls='')
ax.set_xscale('log')
ax.set_yscale('log')

I would like to set the x- and y-axis starting from values lower than 1, but if I use

ax.axis([-10,45,-10,45])

it doesn't work. I know that it is because I'm using a log scale, but is there a way to solve the problem obtaining the axis I want?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use the 'symlog' argument for ax.set_xscale, as this is linear in a small interval around zero and logarithmic elsewhere.

You can even set the interval where you want the axis to be linear with the keyword argument linthreshx (linthreshy for ax.set_yscale), which accepts a tuple consisting of the limit on the negative and the positive side respectively, i.e. linthreshx=(-linthresh,linthresh), or simply linthreshx=linthresh.

ax.set_xscale('symlog')
ax.set_yscale('symlog')
ax.axis([-10,45,-10,45])

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...