그것은 pointsize variable
. 포인트 크기에 대한 추가 열의 값을 사용합니다.
plot 'file.dat' using 0:1:($1*0.01) pointsize variable
업데이트 된 데이터 파일의 경우, 사용할 필요가 없습니다 strcol
, NaN
숫자 값으로 처리 할 때 무시됩니다 :
symbol(N) = strcol(N) ne "NaN" ? strcol(N) : " "
unset key
set offset 0.2,0.2,0.2,0.2
plot for [i=1:3] 'file.dat' using (i-1):0:(symbol(i)) with labels offset char 0,1,\
'file.dat' matrix using 1:2:($3*0.01) with points pt 7 ps var lt 1
출처
https://stackoverflow.com/questions/22008819