What does a PROC TRANSPOSE do?

Answer Posted / vamsi

Proc transpose procedure convert the data from normalization format to non-normalization format

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how does sas handle missing values in procs? : Sas programming

640


what is sas data set?

669


For what purposes have you used sas macros? : sas-macro

540


How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro

588


what is the difference between infile and input? : Sas-administrator

615






what are the benefits of data integration? : Sas-di

543


How does proc sql work?

618


what is the purpose of _error_? : Sas programming

615


what cause the "error: connect:" and "error in the libname statement" when there weren't any such problems?

1689


how can you import .csv file in to sas? : Sas programming

642


What are the uses of sas?

710


How are numeric and character missing values represented internally?

1141


How you can read the variables that you need?

657


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.

1803


What are the statements that are executed only?

676