What are the special input delimiters used in SAS?
No Answer is Posted For this Question
Be the First to Post Answer
you have a data set like this. data qqq; input name $ total; cards; qq 22 ww 33 qq 22 ee 44 rr 33 ww 44 ; run; and you want output like this......... name total qq 22 ww 44 Do it by data set step.
How to save the log information in a file for future use
Does SAS ‘Translate’ (compile) or does it ‘Interpret’? Explain.
what is the difference between nodup and nodupkey options? : Sas programming
Give e an example of..
What is the purpose of _character_ and _numeric_?
how many display types available in sas bi dashboard? : Sas-bi
Name statements that are execution only.
How do you add a number to a macro variable?
What is the order of evaluation of the comparison operators: + - * /** ()?
create macros---you have 365 number of data and you need to merge it throw the macros,,,,,, data file1; input a @@; cards; 1 2 3 4 ; run; data file2; input a @@; cards; 5 6 7 8 ; run; data file3; input a @@; cards; 9 10 11 12 ; run;data file4; input a @@; cards; 13 14 15 16 ; run;
1 new york 7,262,700 2 los angeles 3,259,340 3 philadelphia 1,642,900 how to read the above data using input statement consider the above data is in txt format externally u have to use infile and input statement.