|
From: Thomas P. <jun...@gm...> - 2006-09-08 16:24:53
|
Hm, try instead of using 1855, 1854. As you want already plot 1855th line. How does your 1854th line look like? Is line 3257 the last in your file? if not use every ::1854::3257 Anyway, I don't see a formal mistake in your command line. Try a small file with ten lines to plot and then skip a few lines at the beginning. increase the number of lines and see, whether there is a limit in gnuplot. I doubt it but you never know. Are all columns separated with a comma? Or is it just between the 3rd and 4th? Then you should first change the comma into a blank (i.e. awk) and then u 3:4 . Hope that helped, even though it's hard to tell. Cheers Pelusa On 8 Sep 2006 at 0:47, horatiu wrote: > > If I do: > > set datafile separator "," > > plot "SM1_16-20ppm-2mVps-1.txt" using 3:4 with linespoints > it's plots all data in the file > but if I try > > set datafile separator "," > > plot 'SM1_16-20ppm-2mVps-1.txt' every ::1855 using 3:4 with linespoints > eror: > > all points y value undefined! > my values that I want to plot are from line 1855 to line 3257 > > fusselpelusa wrote: > > > > http://t16web.lanl.gov/Kawano/gnuplot/datafile2-e.html#7.6 > > > > -- > View this message in context: http://www.nabble.com/ploting-data-tf2236773.html#a6204414 > Sent from the Gnuplot - User forum at Nabble.com. > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Gnuplot-info mailing list > Gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-info > |