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

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

0 Answers  


What is the purpose of trailing @ and @@? How do you use them?

0 Answers  


Describe a time when you were really stuck on a problem and how you solved it?

0 Answers   Oracle,


How do you read in the variables that you need?

5 Answers  


how does sas handle missing values in assignment statements? : Sas programming

0 Answers  






Mention few ways with which a “table lookup’ is done in sas programming.

1 Answers  


i have a null dataset with 10 variables; i want to print only name of the varibales in log window and also output window.how can we do this one?

6 Answers   GSK,


How to specify variables to be processed by the freq procedure?

0 Answers  


Differentiate between ceil and floor functions.

0 Answers  


how to intersect the tables by using PROC MIXED?

1 Answers   CitiGroup,


how do you derive descriptive statistics?

1 Answers   Accenture, Quintiles,


hi here is a problem can anybody solve this? i want to report the data through third party file. by using data _null_ or proc report or macro automation process. but i want to insert the 'titles and footnotes' in between the data and also starting of 2nd and ending of 2nd and starting of 3rd and ending of the 3rd page. tell me how and write the code?

0 Answers   Cognizant,


Categories