What is univariate n where it can be used n how...?
Answers were Sorted based on User's Feedback
Answer / 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 |
Tell different ways to create Macrovarible?
3 Answers Accenture, PharmaNet i3,
What are the uses of sas?
Which command is used to save logs in the external file?
What is run-group processing?
explain the function of substr in sas? : Sas-administrator
Can you continue to write code while the rest of the people on the floor where you work have a noisy party to which you were not invited?
what are scrubing procedures in SAS?
how are numeric and character missing values represented internally? : Sas programming
Differentiate between proc means and proc summary.
what are informats in sas? : Sas-administrator
What is the difference between verification and validation?
how do i get last 10obs from a dataset when we don't know about the number of obsevations in that dataset?