|
From: Christopher D. C. <ch...@cs...> - 2010-06-15 01:27:35
|
Hi -- I've been a long-time user of gnuplot, but am baffled at why it's consistently ignoring the first line from all my data input files? I am using the current release version, 4.4.0. My data file is: 50534 0.01 2048 4 2 1 42331740.77 50534 0.01 2048 4 2 1 42331740.77 50534 0.1 2048 4 2 1 148496233.59 50534 0.25 2048 4 2 1 183645787.30 50534 0.5 2048 4 2 1 206525421.53 50534 0.90 2048 4 2 1 242512603.37 My gnuplot command script is where I just want to plot the 2nd column as X and 7th column as Y. Any ideas -- my script is below?? Thanks, Chris ################################################### set border 3 set terminal postscript portrait size 8,8 font "Times,14" set size square set style data linespoints set key inside right top Left reverse enhanced autotitles nobox set key bmargin center horizontal Left reverse enhanced autotitles columnhead box set key samplen 4 spacing 1 width 0 height 0 set ylabel "Event Rate" set xlabel "Lookahead" set xrange [0.0:1.0] # set logscale x set xtics (0.01, 0.10, 0.25, 0.5, 0.90) # set xtics (1, 10, 25, 50, 90) ########################################################################################### # 1K event rate ########################################################################################### set output "event-rate-1K.eps" set title "1024 Processor Performance" plot "data-files/event-rate-1K-optimistic-no-stagger.data" using 2:7 title "Opt/No-Stag" |