What is univariate n where it can be used n how...?

Answers were Sorted based on User's Feedback



What is univariate n where it can be used n how...?..

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

What is univariate n where it can be used n how...?..

Answer / suman

univariate is a procedure for finding the extreame
observations in a variable,whether the data come from the
normal distribution or not,finding the discriptive
statistics,moments,histograms,boxplots etc..

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SAS Interview Questions

If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro

0 Answers  


What is the difference between %local and %global? : sas-macro

0 Answers  


i am importing large data from oracle to work library. in log there is a error message worklibrary space is not enough. then how to import the data safely to sas environment.

2 Answers   Cap Gemini,


What is difference between Global n Local Macro Variables..?

6 Answers   TCS,


If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable?

3 Answers  






Have you ever linked SAS code, If so, describe the link and any required statements used to either process the code or the step itself?

4 Answers  


Have you been involved in editing the data or writing data queries?

1 Answers   BioServe, Oracle, Sasken,


How would you determine how far down on a page you have printed in order to print out footnotes?

3 Answers  


Hi, I have one dataset, could you please ans for this. id amount paid_amount 1 700 400 2 900 250 3 300 300 a 400 250 b 500 320 c 800 650 x 200 190 y 900 250 z 300 180 i want create new dataset having id and paid_amount who are paid high amount comparing amount. ex: 1d paid_amount 3 300 c 650 x 190

3 Answers  


What is the difference between verification and validation?

9 Answers   Oracle,


how can you import .csv file in to sas? : Sas programming

0 Answers  


What statement do you code to write the record to the file?

5 Answers  


Categories