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 / suresh babu prattipati

hi,
to display the dups in seperate dataset please find the
below program.

eg:
data dups;
input var1;
1
2
3
4
4
3
5
6
;
run;

/*to find the dups*/


data dups1;
set dups;
by var1;
if not(first.var1 and last.var1) then output;
run;

*now you can see the dups ;

If any one have any sas question please e.mail me to

suresh.sasv9@gmail.com

thanks
suresh

Is This Answer Correct ?    5 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how do you want missing values handled? : Sas programming

1014


what are the benefits of data integration? : Sas-di

1177


how the sas basic syntax style described? : Sas-administrator

1063


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

1077


Give e an example of..

2138


how would you create multiple observations from a single observation? : Sas programming

1055


What would be the value of month at the end of data step execution and how many observations would be there?

1233


Are you involved in writing the inferential analysis plan? Tables specfications?

2595


In sas admin differentiate between roles and capabilities? : sas-grid-administration

1052


Describe the ways in which you can create macro variables? : sas-macro

1115


what is change analysis in sas di ? : Sas-di

1113


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

4716


what is sas database server? : Sas-di

1192


What makes sas stand out to be the best over other data analytics tools?

1116


What is by-group processing?

1056