How would you code the criteria to restrict the output to be
produced?
Answer Posted / linus
1.obs is one option.
2.in input statement we can restrict the variables we need.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
what is the primary data source for the wrs? : Sas-bi
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
Mention sas system options to debug sas macros.
Name and describe few sas character functions that are used for data cleaning in brief.
What are the difference between sas functions and procedures?
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.
Given an unsorted data set, how to read the last observation to a new data set?
What is factor analysis?
What does the RUN statement do?
Do you know the features of sas?
Tell e how how dealt with..
how will you location sas platform applications available from web browser? : Sas-bi
explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di
What is the use of PROC gplot?
What are the default statistics that proc means produce?