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 to debug and test the sas program? : Sas-administrator
Explain how merging helps to combine data sets.
Is it possible to do sorting tranformation in charecter variable??if can tell me one eg..
hi i date is 05sep2005; i want the oupput like 05sep2005:00:00:00 ; how it wil come?
what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming
How could you generate test data with no input data?
What are types of transport files?
2 Answers PRA Health Sciences, Quintiles,
How would you determine the number of missing or nonmissing values in computations?
Explain input and put function?
What is the function of Stop statement in a SAS Program?
Name and describe few sas character functions that are used for data cleaning in brief.
explain about various caches available in data integrator? : Sas-di