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 would you delete duplicate observations?

Answers were Sorted based on User's Feedback



How would you delete duplicate observations?..

Answer / poornima

we can delete duplicate observations by using nodup or
nodupkey option in the proc sort

Example :-

Proc sort data=datasetname nodup;
run;

Is This Answer Correct ?    33 Yes 12 No

How would you delete duplicate observations?..

Answer / padmasri

In 3 ways we can delete the duplicate records.
1.procedure proc sort
in proc sort there are two ways to delete duplicate
observations:
* nodupkey
*noduprec
2.first. and last.
3.proc sql

these 3 ways we can delet the duplicate records in sas.

Is This Answer Correct ?    16 Yes 0 No

How would you delete duplicate observations?..

Answer / srinivas

there 3 options to delete duplicate obs
1. nodup
2. nodupkey
3.noduprec

if a entire record is duplicated in sense we use nodup of
nodup rec in proc sort procedure.
proc sort data=dsn nodup/noduprec;
by var;
run;


if a variable is repeated not a entire record . this time
we use nodupkey

proc sort data=dsn nodupkey;
by var;
run;

ex; in a dataset empid is repeated then use this syn. and
the empid is used in by var statement.

Is This Answer Correct ?    19 Yes 5 No

How would you delete duplicate observations?..

Answer / vijay

There are several ways to do this. However the easliest
code-wise is to use PROC SORT. For example:

PROC SORT DATA=mydata NODUPKEY;
BY variable;
RUN;

Is This Answer Correct ?    17 Yes 7 No

How would you delete duplicate observations?..

Answer / saritha

noduprecs

Is This Answer Correct ?    7 Yes 3 No

How would you delete duplicate observations?..

Answer / saritha

noduprecs

Is This Answer Correct ?    7 Yes 3 No

How would you delete duplicate observations?..

Answer / mehul thakkar

There are two ways of deleting the records from the dataset
with the help of PROC SORT.
1. Using NODUP/NODUPRECS
2. Using NODUPKEY

The first option deletes the records only if all the
variables values are repeated in the subsequent records.

The second options deletes the records only if the value of
the BY variables given in the BY clause are repeated in the
subsequent records.

Is This Answer Correct ?    4 Yes 1 No

How would you delete duplicate observations?..

Answer / soniya

use nodupkey, noduprec in sort processure

Is This Answer Correct ?    8 Yes 8 No

How would you delete duplicate observations?..

Answer / raj

using proc sort and by statements

Is This Answer Correct ?    3 Yes 16 No

How would you delete duplicate observations?..

Answer / vijay

by using merge statement

Is This Answer Correct ?    2 Yes 19 No

Post New Answer

More SAS Interview Questions

I have 2 data sets A & B. Both have a variable called Age in them, each of them specifying a different functionality. In my program I use bot these data sets. How do I specify which Age variable I want to use?

6 Answers  


What is the differnce between SDTM 3.1.2 to 3.1.1 version

0 Answers   Wipro,


In the following DATA step, what is needed for ‘fraction’ to print to the log? data _null_; x=1/3; if x=.3333 then put ‘fraction’; run;

1 Answers  


What is the one statement to set the criteria of data that can be coded in any step?

4 Answers   Accenture,


What is the command used to find missing values?

0 Answers  


what is the diff. b/w proc means and proc summary?

12 Answers   CitiGroup,


how can u join the two tables without using proc sql Joins and nested queries ?

6 Answers   IBM,


In proc transpose and data step with arrays which one you pick?

0 Answers   Accenture, Quintiles,


I need help in merging two different datasets. I am merging by date and I want to propagate observations from one dataset to the corresponding dates. One dataset has a unique date for each day of the month, while the other dataset has same date for different patient visits. For example I want to spread an observation on the 31DEC2008 from one dataset to several observations with the same date on a second dataset for all the patients who visited on that date. I have tried to merge the two and the result is not what I wanted. Instead I get a dataset whereby all the dates have missing values where observations from the first datset should have spread.

1 Answers  


If you use a symput in a data step, when and where can you use the macro variable? : sas-macro

0 Answers  


how to debug and test the sas program? : Sas-administrator

0 Answers  


what is chi-square test? have you used that?

1 Answers   Accenture, Quintiles,


Categories