Integrate(), Interpolate(), and SplineEval() might be part of what you are looking for. I think you can use the prediction equation directly with the integrate function; you shouldn't need interpolation or splines if you have f(x) already.
I think the problem is that you are sending a column to the integrate function for the first parameter but you need to send the prediction formula. So instead of
Integrate(column with model equation, Time, 0, 10)
something like
Integrate(42+3*Time^2 + 5*Time, Time, 0, 10)
which you might copy from the column's formula.
Possibly something like this will work to avoid a manual copy:
e=pred<<getformula; // get the prediction column formula (pred is probably "column with model equation")
substituteinto(e,expr(:time),expr(xxx)); // replace the time column reference with a dummy xxx
integrate(e,xxx,1,10); // use the dummy xxx in place of time
Craige