- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
When computing confidence interval (CLM), proc means seems to use
- the Student table for small values of n (eg. n=44 > 2,0167 for a 95%CI)
- the Normal table for large values of n (eg. n=4400 > 1,96 for a 95%CI)
Do you have references in the SAS online doc which would indicate which table is used depending on which value of n for CLM, LCLM and UCLM?
Best Regards,
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
p values are not looked up in tables. SAS has software to compute p values for a bunch of distributions given a particular set of parameters. Normal and t are not much different for large n.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thanks. But I'm looking for the computation method used by the system.
Of course, table is just the manual way of accessing to the information. I guess I should have make it clearer using distribution used.
But my point is: which one is selected based on which criteria by the system and where it is documented.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
@xxformat_com wrote:
When computing confidence interval (CLM), proc means seems to use
- the Student table for small values of n (eg. n=44 > 2,0167 for a 95%CI)
- the Normal table for large values of n (eg. n=4400 > 1,96 for a 95%CI)
The t-table value for 4399 df is, to 2 decimal places, the exact same value as the normal distribution.
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Thanks but my question is not to compare the student distribution with the normal distribution for large df. My question is where is specified in the SAS online documentation which tables are programmed internally in the system.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
As I said, there are no internal tables to document. Mathematical programming statements generate the results.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
As as said, my point is not whether it is a table or a formula. My point is to find the definition used internally.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank you. That's exactly what I was looking for 🙂