user2441297
user2441297

Reputation: 249

How to make a logarithmic axis in Gnuplot

How to make it happen? I'm using GnuPlot 4.6 version

solution

Upvotes: 3

Views: 1772

Answers (1)

Raman Shah
Raman Shah

Reputation: 497

Yep, that's something that comes up often!

set yrange[1e-4:1]
set logscale y
set ytics 1e-3, 10, 1
set format y "10^{%L}"

Upvotes: 4

Related Questions