There are a few things that may be wrong here - it is impossible to say without looking at your data file. A couple that I can come up with with my head says:
All of your datapoints in column 2 are all less than or equal to 0 (you get an error because log (0) is undefined)
You have no points in the first column between 50 and 100. In this case, all your data points are cut out of the graph range due to set xrange [50:100]
There is only one column in your data file ... In this case, gnuplot does not see any y-values. (change to plot '../myFile.final' u 1 ... )
EDIT
Ok, now that I see your data file, the problem is that you have set xrange [50:60] , but your xrange data only works from 0 to 2 (gnuplot starts indexing the data file from 0). The easiest way to fix this is to use the pseudo-column 0. The pseudo-column 0 is just the line number starting with 0 (this is what gnuplot displays on the x axis if you do plot 'blah.txt' using 1 Here is an example:
scale_x(x,xmin,xmax,datamin,datamax)=xmin+(xmax-xmin)/(datamax-datamin)*x plot 'test.dat' using (scale_x($0,50,60,0,2)):1 w lines title "scaled xrange"
Note: if you do not know how the usage specification works, the numbers preceded by $ are elementary operations for the entire column. For example:
plot 'foo.bar' using 1:($2+$3)
builds the first column plus the sum of the second and third elements in each row of the data file.
This solution assumes that you know the maximum x value in your data file (in this case 3-1 = 2 - [three points, 0,1,2]). If you do not know the number of data points, you can get this using the shell shell or directly from gnuplot. The first method is a bit simpler, although not as portable. I will show both:
XMAX=`wc -l datafile | awk '{print $1-1}'` scale_x(x,xmin,xmax,datamin,datamax)=xmin+(xmax-xmin)/(datamax-datamin)*x plot 'test.dat' using (scale_x($0,50,60,0,XMAX)):1 w lines title "scaled xrange"
Secondly, we need to make two passes through the data and let gnuplot choose the maximum:
set term push
I suppose, for completeness, I have to say that this is also easier to do in gnuplot 4.6 (I don't have one now, so this next part only comes from my understanding of the docs):
stats 'test.dat' using 0:1 name "test_stats"
Gnuplot 4.6 looks pretty cool. I'll probably start with him pretty quickly.