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 |
what the use of proc glm
Explain translate function?
what is _error_?
2 Answers Axis Bank, Cognizant, JPMorgan Chase,
what is data governance? : Sas-di
what are the considerations when picking a SAS/STAT procedure?
0 Answers Accenture, Quintiles,
What do the put and input function do?
Hot to suppress characters from a given string?
how do i read multiple spaces in datasets? eg: vijaya raghava perumal.I tried with using & but it workss if its vijaya raghava but not for raghava perumal.how to do this?
Hi, I need to create a SAS Map of USA using SAS Graphs(Proc Gmap).The data i have dosent contain any co-ordinates of USA cities or counties or states, and the zip codes are diffrent in the data i have from the zip code in the Maps.US dataset in the Maps Library for SAS MAPS. the data i have is a sales report. i have to generate the maps according to the states,cities aligned in the sales data, HELP Appriciated
Compare sas with other data analytics tools.
what are sas/access and sas/connect? : Sas programming
How to get part of string form the source string without using sub string function in SAS?