What is the function of output statement in a SAS Program?
No Answer is Posted For this Question
Be the First to Post Answer
WHAT IS DEBUGGING? HOW TO TEST THE DEBUGGING IN SAS?
how are numeric and character missing values represented internally? : Sas programming
% let A=3+4 what is result
What techniques and/or PROCs do you use for tables?
How do I CREATE an external dataset with sas code? I would like to create within a sascode a non-exsistent textfile on the host. So I am not forced to create the file befor filling it.
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;
What is the use of %include statement?
what are the different ways of merging two datasets.name atleast 4.
Does anybody has SAS Platform Administration certification dumps. pls send to hariithepalli@gmail.com
how can you improve the performance of a query, If it is excuting very slowly?
what is validvarname and varnum? why we are using this options; explain with a syntax for this options?
Is the physical structure of the data set in the same orientation as the report? Do you need to reshape the data sets? What method should you use to reshape the data–DATA steps,PROC TRANSPOSE,output data set from a procedure?