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 many missing values are available? When might you use them?
What are the functions used for character handling?
Do you use PROC REPORT or PROC TABULATE? Which do you prefer? Explain.
explain the difference between proc means and proc summary?
How substr function works in sas?
What Proc glm does?
how will you location sas platform applications available from web browser? : Sas-bi
what is business intelligence? : Sas-bi
data study; input Subj : $3. Group : $1. Dose : $4. Weight : $8. Subgroup; x= input(Weight,5.1); datalines; 001 A Low 220 2 002 A High 90 1 003 B Low 193.6 1 004 B High 165 2 005 A Low 123.4 1 ; Why does X get truncated? X shows up as 22 instead of 220,9 instead of 90 and 19.8 instead of 198? This problem doesnt happen with the values 193.6 and 123.4. This does not happen if x is read on the 5. informat instead of the 5.1 informat
How do you test for missing values?
Hi... this is chandu, did MSc Microbiology, trying to get job in SAS tool, PLZ Tell me whether IT industries will give consider my education to gain a job....?
What is the maximum length of the macro variable?