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...

how to display duplicated observations in a data using base
sas.

Answer Posted / aravind rangaraj

two ways u can do ot.
1. proc sort with dupout option.
2. data step:
data nodups dups;
set sample;
by x;
if first. and last. then output nodups;
else output dups;
run;
proc print data=dups;
run;

Is This Answer Correct ?    6 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

which date functions advances a date time or date/time value by a given interval? : Sas programming

1011


how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?

2809


What are the best sas programming practices for handling very large datasets? : sas-grid-administration

1069


what is the one statement to set the criteria of data that can be coded in any step? : Sas programming

1192


Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?

2453


Do you know the features of sas?

1096


Name any two sas spawners? : sas-grid-administration

1095


explain the function of substr in sas? : Sas-administrator

1069


What is the basic syntax style in SAS?

1230


What is the general format of function in sas? : sas-grid-administration

1031


explain the use of % includes a statement in sas? : Sas-administrator

1045


Why double trailing @@ is used in input statement?

1268


what are the best practices to process the large data sets in sas programming? : Sas-administrator

1078


Explain append procedure?

1134


how many display types available in sas bi dashboard? : Sas-bi

1144