55

如何在 gnuplot 中更改点的大小、形状和颜色。

plot "./points.dat" using 1:2 title with dots

我正在使用上面的命令来绘制图形,但它显示的点非常小。

我尝试使用命令

set pointsize 20

但点大小仍然相同。

4

3 回答 3

77

使用pointtypeandpointsize选项,例如

plot "./points.dat" using 1:2 pt 7 ps 10  

wherept 7给你一个实心圆圈,ps 10是大小。

请参阅:绘制数据

于 2013-05-22T16:59:46.697 回答
8

pointsize 命令缩放点的大小,但不影响点的大小。

换句话说,plot ... with points ps 2将生成两倍于正常大小的点,但对于plot ... with dots ps 2" ps 2" 部分将被忽略。

您可以使用圆形点 ( pt 7),它看起来就像点。

于 2015-07-10T01:30:53.580 回答
0

使用 1:2 标题和 dt 2 lw 4 绘制“./points.dat”

于 2021-07-19T08:49:56.173 回答