In SAS how to read the variable values having different formats. eg:mar99,mar1999 (in a single variable)
8 21369Describe the types of SAS programming tasks that you performed like Tables? Listings? Graphics? Ad hoc reports? Other?
4 15895
what is ae onset date n what is RDS
What are the different versions of sas that you have used until now? : sas-grid-administration
What is data _null_?
What is the difference between the proc sql and data step?
What will calendar procedure do?
what is sas and what are the functions? : Sas-administrator
What are the difficulties u faced while doing vital signs table or dataset?
Explain how you can debug and test your SAS program?
how do you test for missing values? : Sas programming
How would you include common or reuse to be processed along with your statements?
how are numeric and character missing values represented internally? : Sas programming
What’s the difference between var b1 – b3 and var b1 — b3?
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.
How is character variable converted into numeric variable and vice versa?
what is the one statement to set the criteria of data that can be coded in any step? : Sas programming