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
Is the physical structure of the data set in the same orientation as the report? Do you need to reshape the data sets? What method should you use to reshape the data–DATA steps,PROC TRANSPOSE,output data set from a procedure?
What is the different between functions and PROCs that calculate the same simple descriptive statistics?
What are the features of SAS?
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
Give e an example of..
Name any two sas spawners? : sas-grid-administration
Why and when do you use proc sql?
Difference between sum function and using “+” operator?
what is sas enterprise intelligence architecture? : Sas-bi
Explain append procedure?
What are the ways in which macro variables can be created in sas programming?
explain what is factor analysis? : Sas-administrator
what is factor analysis? : Sas-administrator
Explain the purpose of substr functions in sas programming.
what is the use of proc contents and proc print in sas? : Sas-administrator