what is proc Index? and what is proc document?
No Answer is Posted For this Question
Be the First to Post Answer
what is metadata? : Sas-bi
WHAT DIFFERRENCE DID YOU FIND AMONG VERSION 6 8 AND 9 OF SAS.
what is picture format? give any one example?
How will you assign all the variables of an dataset into a macro variable separated by a space? For example if a dataset has variables A,B,C. Assign them to a macro variable X as X=A B C
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 r the job openings SAS for fresher graduates !
In the following DATA step, what is needed for ‘fraction’ to print to the log? data _null_; x=1/3; if x=.3333 then put ‘fraction’; run;
How we can call macros with in data step? : sas-macro
Why and when do you use proc sql?
What is the differnce between SDTM 3.1.2 to 3.1.1 version
Briefly explain input and put function?
If you were told to create many records from one record, show how you would do this using array and with proc transpose?