What is SAS? is it a software just for use or we can creat
something over there?

Answer Posted / vimal

SAS is the Statistical Analysis system and its a kind of Language that is used to analyse or create reports . its actually simple version to COBOL.

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the different between functions and PROCs that calculate the same simple descriptive statistics?

1235


Are you sensitive to code walk-throughs peer review or QC review?

2615


hi tell be about pfizer? how to compare the work with other companies ? please tell me how to login and work also?

1667


what are sas bi dashboard components? : Sas-bi

667


how to change the execute of macro

1684






How do you delete duplicate observations in sas?

581


what is the use of sas management console? : Sas-di

615


Give some ways by which you can define the variables to produce the summary report (using proc report)?

602


how would you create multiple observations from a single observation? : Sas programming

572


What is the role of unrestrictive users? : sas-grid-administration

578


What are the five ways to do a table lookup in sas? : sas-grid-administration

601


Explain what is data step?

733


what is the one statement to set the criteria of data that can be coded in any step? : Sas programming

654


How to read an input file in sas?

659


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.

1782