How to set data type from data in gnuplot?
gnuplot script:
set terminal pngcairo size 640,480
set output "points.png"
set style data points
set auto x
set autoscale x
unset colorbox
plot 'test.data' using 2:1 with points notitle
test.data p>
32 35 8
34 34 6
36 28 1
34 32 2
28 30 7
38 30 9
34 29 2
35 36 9
39 34 3
31 33 9
28 31 6
35 30 5
33 41 4
32 37 3
how to get point type from 3 columns?
plot 'gnuplot.data' using 2:1 with points pt (:3) notitle
Abstraction example:

necessary:

gnuplot Version 4.6 patchlevel 4
source
share