From: lorenzo123 on
I have a two sets of N paired real numbers,
P=predictions
O=observed values

I am computing the "average prediction error" as

ape=sum(abs(P_i - O_i)) / sum(abs(O_i)), 1<=i<=N

How can I calculate a confidence interval on ape?

Thanks a lot!
Lorenzo
From: Chip Eastham on
On Jun 13, 7:02 pm, lorenzo123 <suruenf...(a)gmail.com> wrote:
> I have a two sets of N paired real numbers,
> P=predictions
> O=observed values
>
> I am computing the "average prediction error" as
>
> ape=sum(abs(P_i - O_i)) / sum(abs(O_i)), 1<=i<=N
>
> How can I calculate a confidence interval on ape?
>
> Thanks a lot!
> Lorenzo

Not without some assumption about the distribution
of errors, possibly obtained from information about
the prediction model and the sample and/or population
distributions.

regards, chip
From: lorenzo123 on
Assume normal distribution.