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 |
when we are using the PROC TRANSPOSE? OBSERVATIONS are repeated then what will happen and what it will show in log window.
if i having variables named a b c d e f ,how to find total of each variable ????give syntax...??
Which are SAS Windows Clients & SAS Java Clients
what is prime numbers? how we can get plc write sas code?
Can you use a macro within another macro? If so how would SAS know where the current acro ended and the new one began?
Which is Best Institute for learning SAS BASE & SAS BI in Hyderabad? Can anyone suggest me ?
How to convert HTML file into SAS dataset?
Explain bmdp procedure?
Hi, I have one dataset like id date ex: id date 1 13 1 13Oct2011 2 14 2 14Oct2011 3 15 3 15Oct2011 --->this is the current date here i want date format like 13Oct2011,14Oct2011 how we can modify the numeric to date format plz answer.
Explain the purpose of retain statement.
what is the one statement to set the criteria of data that can be coded in any step? : Sas programming
code the tables statement for a single level frequency?