what is the difference btw proc means and proc univariate?
Answer Posted / ashis
Both procedure produce descriptive statistics.By proc uni
variate, by default it produce all the statistics(some time
not all required) but in proc means it is possible to
request the statistics that we want.
ex---proc means data=xyz mean max sd;
run;*it would produce statistics of above which we've
mentioned;
| Is This Answer Correct ? | 24 Yes | 8 No |
Post New Answer View All Answers
Give e an example of..
What function CATX syntax does?
How necessary is it to be creative in your work?
why is sas considered self-documenting? : Sas programming
what is the use of proc contents and proc print in sas? : Sas-administrator
What are the features of base sas system?
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
What system options would you use to help debug a macro? : sas-macro
Mention the validation tools used in SAS?
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...
If a variable contains only numbers, can it be a character data type?
Give some examples where proc report’s defaults are same as proc print’s defaults?
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.
what is sas enterprise intelligence architecture? : Sas-bi
what are the softwares and applications that are used most frequently used by sas bi applications developers? : Sas-bi