No, Dave: the 42s will give you the answer for two data. Try it.
Raul
Re: Statistical Bug?
|
|
« Next Oldest | Next Newest »
|
▼
03-27-2003, 10:35 AM
No, Dave: the 42s will give you the answer for two data. Try it. Raul ▼
03-27-2003, 06:29 PM
you have a to be very careful when computing variances on calculators because they all use unstable methods, even hp.
<rant> the correct way is to make use of a two-pass formula (as described in numerical recipes in C page 613). however, that method involves storing all the data points so as to make a second pass. a cheap "calculator" fix avoiding extra storage would be to simply subtract the first number entered from all the numbers entered. this would approximately renormalize the data by the mean. ▼
03-27-2003, 07:17 PM
...for example, do this: clear sigma. 1e6 sigma+ 1e6-1 sigma+
Not *all* HP calculators! The RPL models return 1 for that. They do
a cheap "calculator" fix avoiding extra storage would be to
Yes, that should work. For the "cheap" calculators that we actually ▼
03-28-2003, 06:32 AM
excellent! i'd simply assumed the RPL ones had the same algorithms copied over. this nice to know, at last. i like your "encoded" form, its better than my; subtract the number you firsr thought of hack. its a pity that units than dont store the data don't do something like this. ▼
04-02-2003, 03:01 AM
Thank you.
My method has the advantage that when using it, one typically doesn't
On the other hand, your idea has the advantage that the user wouldn't Have you applied for a patent yet?
Regards, ▼
04-07-2003, 05:30 PM
oops, sorry james, was this in response to my stats correction idea? i didnt see this post earlier. if so then, yes and no :-) yes, thats what i meant and no, there's no patent. :)
basically, was thinking along the lines of what people do by hand. a friend works in a lab calibrating instruments. as you can imagine the results are heavily clustered around a central figure. this and many more reasons is why we still need quality algorithms in calculators. |