diff between nodup rec and ondup key???
Answers were Sorted based on User's Feedback
Answer / mallikarjuna
nodupkey deletes duplicate observations based on by
variable.
noduprec delete the duplicate observations if entire
observation is duplicate.
| Is This Answer Correct ? | 13 Yes | 1 No |
Answer / ramkgupta
simply to say nodup and noduprec checks values present in all variables in dataset from one record to next record where as nodupkey checks values present in only variables given in by statement not all variables in a dataset.
| Is This Answer Correct ? | 5 Yes | 0 No |
In sas admin differentiate between roles and capabilities? : sas-grid-administration
how do u validate sas program
how do u test a pros sql(works or not) without executing it?
i have a dataset with var1,var2,var3; i want to upload the titles for the variables . How can we?
what is the difference btw proc means and proc univariate?
What is the order of evaluation of the comparison && logical && relational operators:?
how can you sort the dataset having millions of OBS(instead of sort procedure?
Did you used proc lifetest? when?
2 Answers Accenture, Parexel, Quintiles,
What are the main differences between sas versions 8.2, 9.0, 9.1?
how are numeric and character missing values represented internally? : Sas programming
data voter; input Age Party : $1. (Ques1-Ques4)($1. + 1); datalines; 23 D 1 1 2 2 45 R 5 5 4 1 67 D 2 4 3 3 39 R 4 4 4 4 19 D 2 1 2 1 75 D 3 3 2 3 57 R 4 3 4 4 ; Idont understand what the (Ques1-Ques4)($1. + 1) means. I have seen (Ques1-Ques4)(4*$1.), but what is (Ques1-Ques4)($1. + 1)? Appreciate all help Thanks
You have a data set of 100 observations,how can you restrict the output so that the output has only data from row no. 10 to row no. 20