From: Ethan A M. <me...@uw...> - 2020-09-09 22:04:22
|
On Wednesday, 9 September 2020 11:05:16 PDT Achim Gratz wrote: > > To reproduce: > > gnuplot> set table $data > gnuplot> plot [0:100] sin(x) > gnuplot> unset table > gnuplot> plot [*:*][-0.1:0.1] $data w lines bins binwidth=0.1 > > > Regards, > Achim. The program extends auto-scaled ranges to the next axis tic unless you tell it not to. If you do not want the range to be extended, tell it set xrange noextend #version 5.4 or set xrange [*:*] noextend #version 5.2 cheers, Ethan |