Give some examples where proc report’s defaults are different than proc print’s defaults?
No Answer is Posted For this Question
Be the First to Post Answer
Code a PROC SORT on a data set containing State, District and County as the primary variables, along with several numeric variables.
What is factor analysis?
what is incremental update ? is this possible in SAS OLAP CUBE STUDIO.
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.
If you have a data set that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variable?
hi tell be about pfizer? how to compare the work with other companies ? please tell me how to login and work also?
what is chi-square test? have you used that?
1 Answers Accenture, Quintiles,
What is the difference between %put and symbolgen? : sas-macro
what is information maps?
What is the difference between input and infile statement?
Give some examples where proc report’s defaults are same as proc print’s defaults?
what is the difference between informat$8. $char8.