Question: Formatting output

How do I format the output from a Fit?

X := [seq(0.1e-1*i, i = 0 .. 12)]; Y := [0, .36, .56, .67, .73, .76, .78, .79, .79, .80, .80, .80, .80]; with(Statistics); f := Fit(a-b*exp(c*x+d), X, Y, x, initialvalues = [a = .8, b = 1, c = -50, d = -.3]); plot({f(x), [seq([X[i], Y[i]], i = 1 .. 13)]}, x = 0 .. .15, color = blue, gridlines = true, style = [line, point], size = [600, 400]);
[0., 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.10,
  0.11, 0.12]
[0, 0.36, 0.56, 0.67, 0.73, 0.76, 0.78, 0.79, 0.79, 0.80, 0.80,
  0.80, 0.80]
  HFloat(0.8011387332253399) - HFloat(1.0911958098409642) exp(
  -HFloat(60.057427500589974) x - HFloat(0.30834993559916535))

 

There are way too many decimals in the output 

Please Wait...