I conducted an experiment, where a capacitor is discharged over a (big) resistor for $t$ seconds and then the remaining charge is measured with a ballistic galvanometer. The data I have is:
t phi
-----------
1.00 65
1.75 60
1.75 61
2.28 56
3.13 52
3.94 48
5.16 44
5.85 40
13.35 20
When I plot this data (gnuplot here) in a semilog plot, I get this:

As far as I can tell, those points lie on a straight line, which would then be an exponential function. And that is what I would expect as well, since this should be
$$Q(t) = Q_0 \exp\left(\frac{-t}{RC}\right)$$
However, when I fit it using this gnuplot snippet, I get fit parameters that make no sense to me.
f1(x) = a * exp(-x/g);
fit f1(x) "test.dat" using 1:2:3 via a,g
Yields:
Final set of parameters Asymptotic Standard Error
======================= ==========================
a = 49.5555 +/- 7.647 (15.43%)
g = -3.43204e+07 +/- 3.281e+13 (9.561e+07%)
I tried this same thing in Octave and Grace as well, they all give me this constant function.
How can I get a meaningful fit for this, other than trying to fit it by hand?
