how can you code the confidence intervals?
Answer Posted / 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 |
Post New Answer View All Answers
what is SAS OPTIMIZATION?
What is the role of unrestrictive users? : sas-grid-administration
what is null hypothesis? why do you consider that?
What is the general format of function in sas? : sas-grid-administration
What is the maximum and minimum length of macro variable
How to read an input file in sas?
Mention how to limit decimal places for the variable using proc means?
if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation
Describe 5 ways to do a “table lookup” in SAS?
Explain substr function?
What is Linear Regression?
How long can a macro variable be? A token? : sas-macro
what is proc Index? and what is proc document?
what are some differences between proc summary and proc means? : Sas programming
How to create list output for cross-tabulations in proc freq?