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 |
What are the difference between ceil and floor functions in sas?
for report generation which one you used proc report or data_null_?
3 Answers Accenture, Quintiles,
How would you compile all macros from a folder in a study, within the autoexec program?
I use NOCUM/NOPERCENT option in the tables statement like this Proc freq data = deepak; tables x y /nocum nopercent; run; Here I get nopercent and nocum in the output only for variables x and y. How do i do it for all variables? Deepak
At compile time when a SAS data set is read, what items are created?
How to test the debugging in sas?
How could i automate the code in the scenario:Every month one new data set will be created for that perticular month transaction list.Now i would like to update the data in the source table by appending every month data automatically. jan---set jan; feb---set jan feb; mar---set jan mar;
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;
I have a dataset concat having variable a b & c. How to rename a b to e & f?
What is the difference between an informat and a format. Name three informats or formats.
In the flow of DATA step processing, what is the first action in a typical DATA Step?
What are the statements that are executed only?