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


Please Help Members By Posting Answers For Below Questions

If a variable contains letters or special characters, can it be numeric data type?

757


what is sas metadata server? : Sas-di

584


which date function advances a date, time or datetime value by a given interval? : Sas programming

588


explain the main difference between the nodup and nodupkey options? : Sas-administrator

682


Hello, I have PROC SQLs results group by 3 fields and I use SUM and COUNT functions in SQL. The problem is when I try to display my result with PROC TABULATE. I am getting very big numbers. I believe I make a mistake some where in Tabulate. Here is my Proc Tabulate. PROC TABULATE DATA=OUT04_05 FORMAT=12.; CLASS YR CENTRE VISA / PRELOADFMT EXCLUSIVE; VAR NEWUSER FRAUD TRANSFER AUTUSER REISSUE; TABLE CENTRE ALL, (YR ALL)*VISA, (NEWUSER*F=COMMA12. AUTUSER*F=COMMA12. FRAUD*F=COMMA12. TRANSFER*F=COMMA12. REISSUE*F=COMMA12.) / MISSTEXT={LABEL='0'} PRINTMISS RTS=20; FORMAT VISA VISAFMT.; KEYLABEL SUM = ' ' ALL = 'TOTAL'; LABEL YR = 'DATE YEAR' NEWUSER = 'TOTAL NEW ACCT' TRANSFER = 'TOTAL TRANSFER' FRAUD = 'TOTAL FRAUD TRANSFER' AUTUSER = 'TOTAL AUTH USERS' REISSUE = 'TOTAL REISSUE'; When I code it like : NEWUSER*N*F=COMMA12. AUTUSER*N*F=COMMA12. I get same amount numbers but to find a NEWUSER I use COUNT(*) and to find AUTUSER I use SUM(xxxx) function so both result shouldn’t be the same my problem is in this point. Could you tell me where the problem in code is. How can I display my result? TX.

1772






What’s the difference between var b1 – b3 and var b1 — b3?

822


What function CATX syntax does?

687


Difference between SAS STATA & SPSS?

676


What is factor analysis?

661


what are all the reports you generated in your recent project?

1679


Explain substr function?

571


Describe crosslist option in tables statement?

709


What are the parameters of scan function?

614


how to generate the test data in sas without input data? : Sas-administrator

570


How do dates work in sas?

639