|
From: Ethan A M. <eam...@gm...> - 2016-03-22 06:42:57
|
On Tuesday, 22 March 2016 12:07:15 AM P. A. Grubel wrote:
> Hello,
>
> My plots look good except the label for 0 on my y axis and the final
> label on my x axis. Is there a way to get rid of these two labels.
> Neither are necessary. Sorry if this is obvious, working on my thesis
> and would like it to look just a tad better.
An explicit tic label overrides an auto-generated one,
so you can just add explicit blank tic labels at 0:
set ytics add ("" 0)
set xtics add ("" wherever)
|