Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试绘制由 3 个坐标组成的数据集:X 坐标、x 坐标和出现次数。例子:
1 2 10 3 1 2 3 2 1
我想为每条线在 x,y 处绘制一个点,其直径取决于第三个值。
Gnuplot 有可能吗?
创建具有可变点大小的 2D 图。请参阅演示。
例子:
plot 'dataFile.dat' u 1:2:3 w points lt 1 pt 10 ps variable
这基本上相当于现有的答案,只是更短:
plot 'dataFile.dat' with circles
信用:Gnuplot:用定义半径的圆圈绘制