What is univariate n where it can be used n how...?
Answer Posted / pricil kurian
Proc univariate is a procedure we can use for calculating
statistics like mean,n, median,sd, extremevalues,range
statistical tests etc. It will give almost all statistics.
Using proc univariate we can draw the histograms and q-q
plots ,this is the main difference between proc means and
proc univariate.We can also output the calculated
statistics into new dataset using the output statement.
eg :proc univariate data=xx;
var age ;
histogram;
qqplot;
run;
it has the same functionality of proc capebality.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
how many display types available in sas bi dashboard? : Sas-bi
What is the basic structure of a sas program?
What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?
What are types of transport files?
How to create list output for cross-tabulations in proc freq?
Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.
what are the new features included in the new version of sas i.e., Sas 9.1.3? : Sas programming
how can you create zero observation dataset? : Sas programming
Have you ever used the SAS Debugger?
I need level 2 to 5 sas using companies in india
I have a dataset concat having variable a b & c. How to rename a b to e & f?
What is interleaving in SAS?
Hi, Does anybody has lastest SAS certification(base, adv., clinical)dumps,if anybody has please email me at mailtorajani76@gmail.com. Thanks
Explain the purpose of retain statement.
Why and when do you use proc sql?