I am new to gnuplot and using Ubuntu 12.04. I want to create a graph on the fly when the information is coming in. So i have a data.dat file which looks like:
time server1 server2
0 0 0
1 2000 3000
2 3000 4000
3 4000 5000
After that i have a script file, loop.plt, that is used to reread the file:
pause 2
replot
reread
And finally, the command I use in in a bash file:
gnuplot -persist -e "plot 'data.dat'" loop.plt
The result comes back as dots - not a line that I expected. But this is only for server1.
How can I change this to create the graph with a line, and also to show the server2 in the same graph? Can someone help me with this?
Change your command to the following:
This plots columns 1 and 2 and columns 1 and 3 using lines