what are the different ways of merging two datasets.name
atleast 4.
Answers were Sorted based on User's Feedback
Answer / apurba gorai
1.Merge in Data Step
2.Proc sql join
3.Proc Format
4.Hash tables
5.Arrays
| Is This Answer Correct ? | 9 Yes | 1 No |
Are you sensitive to code walk-throughs peer review or QC review?
How to convert .xls file into CSV format?
Hi, Does anybody has lastest SAS certification(base, adv., clinical)dumps,if anybody has please email me at mailtorajani76@gmail.com. Thanks
what are validation tools that are used in sas? : Sas-administrator
How do dates work in SAS data?
What would the following datastep do? Data _null_; Set Dist end=eof; Call Symput("xx"!!left(put(_n_,2.)),&dimension); If EOF then Call Symput('numrows',left(put(_n_,2.))); Run; dimension is a macro variable that is being passed here
When looking for data contained in a character string of 150 bytes, which function is the best to locate that data: scan, index, or indexc?
Hi, I have one dataset like id date ex: id date 1 13 1 13Oct2011 2 14 2 14Oct2011 3 15 3 15Oct2011 --->this is the current date here i want date format like 13Oct2011,14Oct2011 how we can modify the numeric to date format plz answer.
How can I remove header from output data set?
what is data access? : Sas-di
: and & modifiers.
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming