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

Mention the difference between ceil and floor functions in sas?

0 Answers  


What are the difficulties u faced while doing vital signs table or dataset?

0 Answers  


Describe the ways in which you can create macro variables? : sas-macro

0 Answers  


How do you write a test plan?

1 Answers   Oracle,


Are you sensitive to code walk-throughs peer review or QC review?

0 Answers   Quintiles,






Explain the purpose of substr functions in sas programming.

0 Answers  


How do dates work in SAS data?

0 Answers  


What is Tabulate.?Why we use it.? Which type of output we get from Tabulate.?

3 Answers   TCS,


if we dont want to print output what we have to do..???give syntax..???

8 Answers   Accenture, GSK GlaxoSmithKline,


Have you been involved in editing the data or writing data queries?

1 Answers   BioServe, Oracle, Sasken,


How can a SAS WEB REPORT STUDIO USER identify which report tabs they have been permitted without entering the SAS WEB REPORT STUDIO

2 Answers   TCS,


explain the concepts and capabilities of business object? : Sas-bi

0 Answers  


Categories