Hello team,
I need to learn SAS and I need to know the syntax for some of the keywords.
I am looking for syntax for DupOut, how to go to find the syntax and information about this key word?
Regards,
GN
data class;
set sashelp.class;
run;
proc sort data=class dupout=want nodupkey;
by sex;
run;
Thanks for the response.
I am learning SAS; I need some place to go when I have a question; like when I go to MSDN to ask a question or learn something.
Regards,
GN
Like This ?
data class;
set sashelp.class;
run;
proc sort data=class dupout=want nodupkey;
by sex;
run;
data class;
set sashelp.class;
run;
proc sort data=class dupout=want nodupkey;
by sex;
run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.