Do you think professionally?

Answer Posted / sabarish

as long as it is logical.

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what are informats in sas? : Sas-administrator

588


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.

1802


what is SAS OPTIMIZATION?

1817


How would you define the end of a macro? : sas-macro

612


what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming

692






what is the effect of the options statement errors=1? : Sas programming

595


How do you test for missing values?

1059


describe about metadata object? : Sas-di

628


What do the put and input function do?

589


what are validation tools that are used in sas? : Sas-administrator

593


Describe the ways in which you can create macro variables?

634


what are several options for creating reports in web report studio? : Sas-bi

631


What is the purpose of _character_ and _numeric_?

589


Approximately what date is represented by the SAS date value of 730?

750


what are some good sas programming practices for processing very large data sets? : Sas programming

512