how can u create zero observation dataset?
Answer Posted / din
data a ;
set b(obs=0);
run;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the difference between match merge and one to one merge?
how can you import .csv file in to sas? : Sas programming
Explain bmdp procedure?
how will you locate the sas platform applications? : Sas-bi
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 to convert a numeric variable to a character variable?
What does P-value signify about the statistical data?
what do the sas log messages "numeric values have been converted to character" mean? : Sas programming
Of all your work, where have you been the most successful?
How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?
I have a dataset concat having variable a b & c. How to rename a b to e & f?
what are the types of interactive display types? : Sas-bi
Mention the category in which sas informats are placed?
What is maximum storage capability of SAS?
What is the general format of function in sas? : sas-grid-administration