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
What are the different types of sas functions?
Can you execute a macro within a macro? Describe. : sas-macro
What is the difference between nodupkey and nodup options?
What is the difference between where and if statement?
What is the difference between using drop = data set option in data statement and set statement?
how many display types available in sas bi dashboard? : Sas-bi
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;
what do you mean by data staging area? : Sas-di
What are the special input delimiters used in SAS?
What is a macro routine?
what are validation tools that are used in sas? : Sas-administrator
How does proc sql work?
what is the use of proc sql? : Sas programming
In sas, what are the areas that you are most interested in? : sas-grid-administration
Describe the function and utility of the most difficult SAS macro that you have written?