I'm new to gnuplot and I want to remove all of the axis and borders from the a plot. I've turned off borders, xtics, & ytics but I'm still getting an x-axis in my plot.
gnuplot> unset border
gnuplot> unset ytics
gnuplot> unset xtics
gnuplot> set samples 1000
gnuplot> set polar
dummy variable is t for curves
gnuplot> plot [0:10*pi] 10+2*sin(56*pi*t/20)
add the following commands:
unset raxis
unset rtics
Check help raxis
and help rtics
.