如何在 gnuplot 中更改点的大小、形状和颜色。
plot "./points.dat" using 1:2 title with dots
我正在使用上面的命令来绘制图形,但它显示的点非常小。
我尝试使用命令
set pointsize 20
但点大小仍然相同。
如何在 gnuplot 中更改点的大小、形状和颜色。
plot "./points.dat" using 1:2 title with dots
我正在使用上面的命令来绘制图形,但它显示的点非常小。
我尝试使用命令
set pointsize 20
但点大小仍然相同。
pointsize 命令缩放点的大小,但不影响点的大小。
换句话说,plot ... with points ps 2
将生成两倍于正常大小的点,但对于plot ... with dots ps 2
" ps 2
" 部分将被忽略。
您可以使用圆形点 ( pt 7
),它看起来就像点。
使用 1:2 标题和 dt 2 lw 4 绘制“./points.dat”