What does a PROC TRANSPOSE do?

Answer Posted / sree

ROW VALUES CONVERT IN TO OBSERVATION

Is This Answer Correct ?    2 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

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

694


what is intially documentation in sas?

4328


If you use a symput in a data step, when and where can you use the macro variable? : sas-macro

603


where to use sas business intelligence? : Sas-bi

574


how would you determine the number of missing or nonmissing values in computations? : Sas programming

650






how we can create a FLAG datasets? Ex:-ID age_group no_persons 1 to 10 10 to 20 3 11 to 20 21 to 30 7 21 to 3o 31 to 40 5

1652


data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

1793


What is the maximum length of the macro variable?

670


what are the best practices to process the large data sets in sas programming? : Sas-administrator

531


What do the sas log messages “numeric values have been converted to character” mean? What are the implications?

712


What are the data types does SAS contain?

649


what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming

605


how does sas handle missing values in sort order? : Sas programming

524


What is the basic syntax of a sas program?

660


What are the difficulties u faced while doing vital signs table or dataset?

1927