How to select the observations randomly from a SAS dataset
Answer Posted / ram
by using proc sort.
| Is This Answer Correct ? | 2 Yes | 18 No |
Post New Answer View All Answers
What are the prime responsibilities of data integration administrator? : Sas-di
What are the difference between ceil and floor functions in sas?
Have you used macros? For what purpose you have used? : sas-macro
what are informats in sas? : Sas-administrator
which date function advances a date, time or datetime value by a given interval? : Sas programming
I have 3 years of work experience at a startup and recently got certified in Data Science with SAS. I need to know how to get into the analytics industry
Mention how to limit decimal places for the variable using proc means?
how would you determine the number of missing or nonmissing values in computations? : Sas programming
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.
In SAS explain which statement does not perform automatic conversions in comparisons?
How to test the debugging in sas?
What is the function of output statement in a SAS Program?
Which function is used to count the number of intervals between two sas dates?
In sas admin differentiate between roles and capabilities? : sas-grid-administration
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?