Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Write SAS codes to compare two datasets. Suppose the
allowable difference is 0.1.

Answers were Sorted based on User's Feedback



Write SAS codes to compare two datasets. Suppose the allowable difference is 0.1...

Answer / kumar

0.1 diff can be achieved by using criterion= option in
compare.

Is This Answer Correct ?    3 Yes 0 No

Write SAS codes to compare two datasets. Suppose the allowable difference is 0.1...

Answer / reshma

Proc compare to compare to datasets with respect to all
variables.

proc sort data= data1 ;
by var1;
run;

proc sort data= data2 ;
by var1;
run;

Proc comapre base=data1 compare=data2;
run;

don't know abt 0.1 diff

Is This Answer Correct ?    5 Yes 4 No

Post New Answer

More SAS Interview Questions

who is the best SAS clinical Trainer in Hyderabad?

3 Answers  


If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro

0 Answers  


calculate the sum of value using only DATA STEP. data count_; input year name $ value; cards; 2006 xxx 10 2007 yyy 12 2006 xxx 20 2008 yyy 15 2007 xxx 15 ; out put should be like this year name T_value ----------------------- 2006 xxx 30 2007 xxx 15 2007 yyy 12 2008 xxx 15

6 Answers  


Mention what is the difference between nodupkey and nodup options?

0 Answers  


What is instream data in SAS?

1 Answers  


How would you code a merge that will keep only the observations that have matches from both sets.

5 Answers   Accenture, Bank Of America,


How to do user inputs and command line arguments in SAS? D&B

2 Answers   BoA, Quintiles,


Explain the purpose of substr functions in sas programming.

0 Answers  


which date function advances a date, time or datetime value by a given interval? : Sas programming

0 Answers  


Hi, If anyone has base SAS certification dumps, please share.

0 Answers  


Explain the use of proc gplot? : sas-grid-administration

0 Answers  


How would you invoke a macro? : sas-macro

0 Answers  


Categories