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 |
Can you use a macro within another macro? If so how would SAS know where the current acro ended and the new one began?
What is the difference between SAS Data step and SAS PROC SQL, and which is better?
How do you debug and test your SAS programs?
what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming
What would the following datastep do? Data _null_; Set Dist end=eof; Call Symput("xx"!!left(put(_n_,2.)),&dimension); If EOF then Call Symput('numrows',left(put(_n_,2.))); Run; dimension is a macro variable that is being passed here
How would you invoke a macro? : sas-macro
How long can a macro variable be? A token? : sas-macro
what has been your most common programming mistake? : Sas programming
Name statements that function at both compile and execution time.
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
What are TEAEs
2 Answers Accenture, Quintiles,
For what purpose(s) would use the RETURN statement?