Are you familiar with special input delimiters? How are they
used?
Answers were Sorted based on User's Feedback
Answer / ganesh
dsd and dlm='' are the special delimiters, these are used
in the infile /file statements, this is very flexible to
instructs sas to read and print the datavalues.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / jahnavi
delimiters are special characters which delimits data values.
dsd and missover are not delimiters.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / santhi swaroop
DELIMITRS ARE THE SPECIAL CHARACTERS THET HAD BEEN GIVEN
IN THE DATA .
DELIMETERS ARE MOST SENSITIVE.
FOR EX:(, " ') AND MANY MORE.
SYNTAX
DATA SANTHI;
"PATH "DLM=" ," ;
INPUT ID NAME$ AGE SAL;
RUN;
HERE , WAS THE DELIMETER
| Is This Answer Correct ? | 0 Yes | 4 No |
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 the sas data set? : sas-grid-administration
Enlist the functions performed by sas.
how does sas handle missing values in a merge? : Sas programming
Describe the function and untility of the most difficult SAS macro that you have written.
How do you convert basic cube to transaction cube and transaction cube to basic cube?
what is ae onset date n what is RDS
What is program data vector (pdv) and what are its functions?
how can u extract,transform and loading?
When merging 2 datasets with a common variable (not merge key), how to keep both?
How do you read in the variables that you need?
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