0

I am googling this problem but not sure whether I am using the right key words to describe the problem.

The problem is this: I want to plot the x-ticks with the format 1.0 x 10^6 and some thing like that, so I use the following code:

set format x "%1.1t {/Symbol \264} 10^{%T}"

And the result is like this:

enter image description here

The code works pretty fine except at origin point, which I want it still keeps 0 there, because you can see that 0x10^0 is still 0.

So is there anything I can do to solve this problem, or any web page or documents help solve this problem?

To be more specific, I want the plot look like this:

enter image description here

Thank you!

sikisis
  • 458
  • 9
  • 21

1 Answers1

0

With the help of MichaelO. and Christoph, I solved the problem.

In Gnuplot, just using

set xtics add('0.0' 0

can overwrite the original one with the new format of tics.

Here is the reference:

excluding a tic number in scientific format

sikisis
  • 458
  • 9
  • 21