1. Disabling the X-axis
unset xtics
2. Disabling the Y-axis
unset ytics
3. Disabling the border
unset border
4. Plotting a circle
set parametric plot sin(t), cos(t)
5. Ensuring that both axes use the same scale
set size square
6. Getting rid of legends
plot something notitle
Advertisement