Use the test
command to find out which points are supported for each terminal (see e.g. Gnuplot line types). For the wxt
terminal you can use pointtype 6
.
To put a label above the point, use the labels
plotting style
plot 'alias_SCN' using 2:3:(sprintf('%d', $1)) with labels offset 0,1 point pointtype 6 pointsize 2
If you want more control over the circles, you can also use the circles
plotting style, in which case you must use two plot commands to get also the labels:
plot 'alias_SCN' using 2:3:(0.2) with circles,\
'' using 2:3:(sprintf('%d', $1)) with labels offset 0,1
The third column for the circles gives the radius, here a fixed radius of 0.2
.