What is the difference between nodup and nodupkey options?
Answer Posted / pavan
Nodup : it delete the observartions based on each and every
variable value is same irespective of sorting varibale.
Nodupkey: It delete the observarions based on sorting
variable.
| Is This Answer Correct ? | 13 Yes | 4 No |
Post New Answer View All Answers
How to create a permanent sas data set?
Tell e how how dealt with..
what are all the reports you generated in your recent project?
Hi, Does anybody has lastest SAS certification(base, adv., clinical)dumps,if anybody has please email me at mailtorajani76@gmail.com. Thanks
What is the function of Stop statement in a SAS Program?
Why double trailing @@ is used in input statement?
What is the role of unrestrictive users? : sas-grid-administration
How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?
data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.
Compare sas with other data analytics tools.
Hi,by usining ptf how we have to combine (likr merge)10 datasets at a time in the oracle database(and write a macro code also)?Like this i have a douts a lot if you dont mind may please send one text mail for me(madhusudhanap16@gmail.com)?
explain the proc in sas? : Sas-administrator
How would you identify a macro variable?
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
Mention what is PROC in SAS?