"What is the difference between proc sort nodup and proc
sort nodupkey?"
Answer Posted / venkatesh
nodup: it deletes duplicates(column wise duplicates).
nodupkey: it deletes row wise duplicates according to
your by variable;
ex: id name
100 nani
101 ravi
100 nani
101 kali
nodup result:
id name
100 nani
101 ravi
101 kali
nodupkey result
100 nani
101 ravi
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
what is null hypothesis? why do you consider that?
it will become easy if uuu provide website linkssss and list of consultanciessssss
what has been your most common programming mistake? : Sas programming
what is proc Index? and what is proc document?
What are the default statistics that proc means produce?
If money were no object, what would you like to do?
What are the data types does SAS contain?
How to limit decimal places for variable using proc means?
What is maximum storage capability of SAS?
In sas admin differentiate between roles and capabilities? : sas-grid-administration
explain the main difference between the nodup and nodupkey options? : Sas-administrator
How are numeric and character missing values represented internally?
What is the function of Stop statement in a SAS Program?
how does sas handle missing values in assignment statements? : Sas programming
How will you generate test data with no input data?