Please write codes to merge two datasets and keep every
record in the first dataset.
Answer / reshma
proc sort data=dataA;
by commonvar;
run;
proc sort data=dataB;
by commonvar;
run;
data new;
merge dataA (in=a) dataB (in=b);
if a ;
by commonvar;
run;
| Is This Answer Correct ? | 14 Yes | 0 No |
I need level 2 to 5 sas using companies in india
what is validvarname and varnum? why we are using this options; explain with a syntax for this options?
If money were no object, what would you like to do?
How to specify variables to be processed by the freq procedure?
what is p-value
3 Answers Accenture, Quintiles, Sristek,
how to read character value without using substr function in sas ?
You need to create an In List that it is to be later used in a Where Clause that includes all the Regions that begin with the letter A from the sashelp.shoes table. Using PROC SQL with an into clause create the following string from the sashelp.shoes table using the variable region “AFRICA”,”ASIA”,…..
Give e an example of..
what is the use of LRECL option.
Describe 5 ways to do a “table lookup” in SAS?
How would you generate 1000 observations from a normal distribution with a mean of 50 and standard deviation of 20. How would you use PROC CHART to look at the distribution? Describe the shape of the distribution.
For clinical entire study how many tables will create approx?