What are the functions which are used for character handling functions?
No Answer is Posted For this Question
Be the First to Post Answer
Can you execute macro within another macro? If so, how would sas know where the current macro ended and the new one began? : sas-macro
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?
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.
There is a field containing a date. It needs to be displayed in the format “ddmonyy” if it’s before 1975,”dd mon ccyy” if it’s after 1985, and as ‘disco years’ if its between 1975 and 1985. How would you accomplish this in data step code? Using only PROC FORMAT.
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 versions of sas have you used (on which platforms)? : Sas programming
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?
What are TEAEs
2 Answers Accenture, Quintiles,
How would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable?
One way of creating a new variable in Macros is by % Let....What is the other way..?
what are the advantages of using SAS in clinical data mangement? why should not we use other software products in managing clinical data?
How would you generate 1000 observations from a normal distribution with a mean of 50 and standard deviation of 20. How would you use PROC CHART to look at the distribution? Describe the shape of the distribution.