如何在gnuplot中更改磅值,形状和颜色。
plot "./points.dat" using 1:2 title with dots
我使用上面的命令来绘制图形,但它显示的是非常小的点。
我尝试使用命令
set pointsize 20
但点数大小相同。
答案 0 :(得分:62)
使用pointtype
和pointsize
选项,例如
plot "./points.dat" using 1:2 pt 7 ps 10
其中pt 7
为您提供一个圆圈,ps 10
就是大小。
请参阅:Plotting data。
答案 1 :(得分:5)
pointsize command缩放点的大小,但不影响点的大小。
换句话说,plot ... with points ps 2
将生成正常大小的两倍,但对于plot ... with dots ps 2
,{34} ps 2
"部分被忽略。
您可以使用圆点(pt 7
),它看起来就像点。
答案 2 :(得分:0)
使用 1:2 标题和 dt 2 lw 4 绘制“./points.dat”