|
From: fly a. <vic...@gm...> - 2006-03-19 02:35:32
|
Zhenhai Duan wrote: > > Hi, > > I want to plot all the data in a "line", however, I also want to > put some "point marks" (such as rectangle, asterisk etc) for some > of the points. Can anyone help me on this? > > Basically, I have a large set of data, if I use linespoints for ploting, I > cannot differeniate the linespoints for different data set (because there > are so many points). On the other hand, if I use the every command, some > data value will be ignored. > > Many thanks, > -- > Zhenhai Duan > > First you have to decide which points you want to have marked differently. If I understand you correctly, you want all data with a line, and every some number (for ex. 4) of data points with a different mark - then use: plot 'file' u 1:2 with lines, 'file' every 4 u 1:2 with points (or dots or whatever) Hope it helps. -- View this message in context: http://www.nabble.com/ploting-lines-points-t1303610.html#a3477378 Sent from the Gnuplot - User forum at Nabble.com. |