I have a dataset that represents the points while creating a circle (multiple circles), like so: 
gnuplot <<-EOF
set autoscale
plot "$file" w lp
EOF
I would like to express the point creation timestamps with colors, so let's give a number to every color, starting from red to blue, from 1 to SAMPLE_COUNT; I need to draw lines between points:
- #point_0 -> color: 1 -> #point_1
- #point_1 -> color: 2 -> #point_2
and so on. In the end, I'd like to get something like:
Can we make this with GnuPlot?

