Gnuplot: plot with circles of a defined radius

前端 未结 2 1023
鱼传尺愫
鱼传尺愫 2021-01-01 18:39

I know on gnuplot you can plot some data with circles as the plot points:

plot \'data.txt\' using 1:2 ls 1 with circles

How do I then set t

2条回答
  •  时光取名叫无心
    2021-01-01 19:10

    I used:

    plot "file" using 1:2:($2*0+10) with circles
    

    This will fake a the third column specifying the sizes - it is probably possible to write it simpler, but this worked for me.

提交回复
热议问题