how can you code the confidence intervals?
Answers were Sorted based on User's Feedback
Answer / kumaraswamy maduri
If your question if How can you code the confidence
intervals for mean then the code will be as follows:
Proc Means
Data = act.admit
Alpha = 0.05
mean std lclm uclm;
var x y;
by z;
run;
If it is for proportions its better to depend up on
standard formulae.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / akanshu
Use proc Univariate with clm option and alpha=
For example -
Proc univariate data=sashelp.class clm alpha=0.05;
Run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / kiran
by using proc ttesat we can get lower and higher confidence
limits
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / abhaya
First find out the mean and variance of data set by proc
univariate then automatically you will get the result of
confidence interval.
| Is This Answer Correct ? | 1 Yes | 4 No |
Answer / tulika
Proc Mean
Data = xyz
Alpha = 0.05
mean std;
var x y;
by x;
run;
| Is This Answer Correct ? | 0 Yes | 3 No |
How do you use the do loop if you don’t know how many times you should execute the do loop?
Define run-group processing?
what has been your most common programming mistake? : Sas programming
what are sas/access and sas/connect? : Sas programming
What are the new features included in the new version of SAS Programming Language?
what is data integration? : Sas-di
What is the purpose of using the N=PS option?
How do you control the number of observations and/or variables read or written?
How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?
If a variable contains letters or special characters, can it be numeric data type?
Name statements that are execution only?
what are all the ways to define macro variable??
2 Answers GSK GlaxoSmithKline,