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 |
how do we get duplicate observations in a separate dataset?
What function CATX syntax does?
How can I remove header from output data set?
What is the order of evaluation of the comparison operators: + - * /** ()?
What is the maximum length of the macro variable? : sas-macro
How is character variable converted into numeric variable and vice versa?
6) Explain about below automatic variables a) _N_ b) _ERROR_ c) _CHAR_ d) _NUMERIC_ e) _ALL_ f) FIRST.BY VARIABLE g) LAST.BY VARIABLE h) _NAME_ i) _TYPE_ j) _FREQ_ k) _STAT_ l) _BREAK
what is the basic structure sas administrator? : Sas-administrator
Explain what is the use of proc gplot?
Give some examples where proc report’s defaults are different than proc print’s defaults?
How to select the observations randomly from a SAS dataset
How can you put a "trace" in your program?