I was looking at the examples that show how to fit data using gnuplot (ex: gnuplot / misc (2E)) but I can't find a place that shows what to do if I have ranges for the x and y error bars. I tried the common sense:
gnuplot> fit f(x) "data.txt" using 3:6:4:5:7:8 via a,b
^
Too many columns in using specification
But I get the error shown above. Any idea why this doesn't work? Because when I plot my data I use:
plot "data.txt" using 3:6:4:5:7:8 with xyerrorbars
Sounds to me like you have "too many columns in using specification"
One obviously path to solving this could be to look closely at the number of columns in your data and the number of columns in your gnuplot command (specification).
I am using 6 columns:
x : y : min x : max x : min y: max y
where min and max are the range of the errors for x and y... when I plot a file withe these columns I get a correct plot, but I can't use the same thing to fit the data... do you know what I mean?