|
From: ZoltánVörös <zv...@gm...> - 2010-01-13 15:51:19
|
> > I would like to use gnuplot to plot a graph, and to printout a table > > of data points in the graph in the same plot > > I wonder whether something like this would work for you: plot 'foo' u 1:2 w lp, '' u (8):0:2 axes x1y2 w labels which will plot 2 versus 1, and put labels with the value of the second column at (8,0), (8,1), (8,2) etc. (I used the second y axis, so that the labels don't mess up your line plot.) Cheers, Zoltán |