What is the difference between a PROC step and a DATA step?
Answer Posted / kumarrd
we can create the sas data set from raw data file in data step
Then in proc step we can do the analysis on sas data set and
also we can get o/p
| Is This Answer Correct ? | 66 Yes | 5 No |
Post New Answer View All Answers
what is function of retain statment
how would you determine the number of missing or nonmissing values in computations? : Sas programming
Are you involved in writing the inferential analysis plan? Tables specfications?
what is sas enterprise intelligence architecture? : Sas-bi
What are the different servers in sas? : sas-grid-administration
Mention the category in which sas informats are placed?
What are the difference between the sas data step and sas procs?
What is the good sas programming practices for processing large data sets?
Describe 5 ways to do a “table lookup” in SAS?
what is proc Index? and what is proc document?
hi tell be about pfizer? how to compare the work with other companies ? please tell me how to login and work also?
what is sas database server? : Sas-di
What is the difference between nodupkey and nodup options?
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.
Mention the validation tools used in SAS?