使用Gnuplot绘制极坐标时,如何移除或调整径向轴线的样式?
示例:
set polar
unset key
unset border
unset tics
plot '' u w filledcurve
产地:
我想删除/调整水平黑线。
答案 0 :(得分:3)
您要查找的命令是unset raxis
,例如:
set polar
unset key
unset border
unset tics
unset raxis
set size square
plot 1+cos(t) with filledcurve
我添加了set size square
来使用平方比率。上面的脚本导致: