What is your weekness? I am confuse what to say about this
question. so can u give some answer which can be yur
strenght.
Answer / shyampatel
my weekness is i q do any work with complete dedication and honestly
| Is This Answer Correct ? | 0 Yes | 1 No |
Difference between SAS STATA & SPSS?
i have a null dataset with 20 variables. i want to upload the variables which contain name like a or k or anything in another dataset.how can we create the dataset?
i have a macro variable var1,var2. i want titles for the each macro variable separately? how it is possible?
what are some good sas programming practices for processing very large data sets? : Sas programming
What is PDV?
what is the use of LRECL option.
Can you excute a macro within a macro? Describe.
how to handle in stream data containing semicolon in it?
what does .. meant in sas macros
what is business intelligence? : Sas-bi
You need to create an In List that it is to be later used in a Where Clause that includes all the Regions that begin with the letter A from the sashelp.shoes table. Using PROC SQL with an into clause create the following string from the sashelp.shoes table using the variable region “AFRICA”,”ASIA”,…..
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.