I'm new to GnuPlot and find it a bit confusing. I have data like this:
sensor1 timestamp temperature
sensor1 timestamp temperature
sensor1 timestamp temperature
sensor2 timestamp temperature
sensor2 timestamp temperature
sensor2 timestamp temperature
sensor3 timestamp temperature
sensor3 timestamp temperature
I use the following for only one sensor which produces the expected result.
plot 'sensors.txt' using 2:($3/100.0):1 with lines
I want draw a graph for every sensor using the first value as the graph's title. It does not sound like a to complex problem but I could not figure it out other than splitting the data up into one file for each sensor. Is there a more elegant solution?
