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.
我想做一个不同大小的点的图表。是否可以只使用一个文件并指定文件中每个点的大小?
文件示例:
1 2 Size1 2 3 Size2
我想用 size 画点,用(1,2)size画Size1点。(2,3)Size2
(1,2)
Size1
(2,3)
Size2
我知道我可以制作不同的文件(即每个大小的点一个文件),但如果我可以只用一个文件做到这一点,它真的会帮助我。
pointsize variable在绘图命令中使用:
pointsize variable
plot "data.txt" using 1:2:3 with points pointsize variable
例如,请参阅http://gnuplot.sourceforge.net/demo/pointsize.html