how can you code the confidence intervals?

Answers were Sorted based on User's Feedback



how can you code the confidence intervals?..

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

how can you code the confidence intervals?..

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

how can you code the confidence intervals?..

Answer / ramesh

Hi,

if u have SAS/SC.. u can get confidence limits directly
using Proc Shewart

Is This Answer Correct ?    0 Yes 2 No

how can you code the confidence intervals?..

Answer / kiran

by using proc ttesat we can get lower and higher confidence
limits

Is This Answer Correct ?    0 Yes 2 No

how can you code the confidence intervals?..

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

how can you code the confidence intervals?..

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

Post New Answer

More SAS Interview Questions

How do handle working under pressure?

1 Answers   Oracle, Wipro,


in ods is there any lib's

2 Answers   SAS,


explain the proc in sas? : Sas-administrator

0 Answers  


what can you learn from the sas log when debugging? : Sas programming

0 Answers  


what is factor analysis? : Sas-administrator

0 Answers  






what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming

0 Answers  


Explain the use of proc print and proc contents?

0 Answers  


how to shift the rows to cols? eg: i have like field1 field2 field3 10 20 20 this should be displayed as field1 10 field2 20 field3 30 (without the obs col) how do this?can i use transpose or tell me suitable way to do this?

3 Answers   CMC,


Hi, Does anybody has lastest SAS certification(base, adv., clinical)dumps,if anybody has please email me at mailtorajani76@gmail.com. Thanks

0 Answers   Axis Bank,


What is the purpose of using the N=PS option?

2 Answers   Oracle,


What is the function of output statement in a SAS Program?

0 Answers  


How to convert a given date value into SAS date

9 Answers   CitiGroup, Quintiles,


Categories