proc means?
proc sort?
proc append?
proc freq?
proc print?
proc content?
Answer Posted / krishnarao
proc append means avenge the data in one by one.
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
how does sas handle missing values in formats? : Sas programming
what is slowly changing dimension? : Sas-di
for whom is sas data integration studio designed? : Sas-di
How to convert a numeric variable to a character variable?
what is intially documentation in sas?
Describe 5 ways to do a “table lookup” in SAS?
Explain data_null_?
What are the 3 components in sas programming?
what is sas data set?
what is proc Index? and what is proc document?
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.
what do the mod and int function do? What do the pad and dim functions do? : Sas programming
In sas admin differentiate between roles and capabilities? : sas-grid-administration
What is the difference between the proc sql and data step?
Are you sensitive to code walk-throughs peer review or QC review?