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

what has been your most common programming mistake? : Sas programming

1185


Tell e how how dealt with..

2264


how does sas handle missing values in sort order? : Sas programming

978


Which are the statements whose placement in the data step is critical?

1308


Explain why double trailing @@ is used in input statement?

1114


how do you pull data from equifax?tell me the process?

1833


What is maximum number of rows and cols can be handled in SAS?

1670


Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.

1925


What is the purpose of trailing @ and @@? How do you use them?

1082


Explain how you can debug and test your SAS program?

1051


What is the good sas programming practices for processing large data sets?

1176


Of all your work, where have you been the most successful?

4715


what r the job openings SAS for fresher graduates !

2500


What are the difficulties u faced while doing vital signs table or dataset?

2446


what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi

1135