There was an excellent answer to a similar question here but I'm interested in adapting it to plot fit results.
Specifically, if I have non-linear data that I'm attemting to fit with
mm(x) = (V*x)/(x+Km)
fit mm(x) "mm data.txt" u 1:2:3 via V,Km
which spits the result out in a 'fit' file. The results are the variables +/- their variance
Final set of parameters Asymptotic Standard Error
======================= ==========================
V = 0.00544444 +/- 0.0001935 (3.554%)
Km = 42.239 +/- 8.092 (19.16%)
Is it possible to plot the fitted data, the fit as a line, and a smooth, filled region whose bounaries are 2x the SE?
I was thinking I could simply create new data files by evaluating the fit function using (V+2*SEV, Km+2*SEKm) or (V-2*SEV, Km-2*SEKm) then plotting them as filled, smooth confidence bands as listed in the above answer but I would be interested to know if there's a more elegant way.