How to get the repeated values by using sql in sas ?
Answer Posted / naveen
proc sql;
select name count
from
group by name;
quit;
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the purpose of _character_ and _numeric_?
What is the SAS data set?
what are some differences between proc summary and proc means? : Sas programming
Explain translate function?
For what purpose would you use the RETAIN statement?
Mention common programming errors committed in sas ?
what is program data vector? : Sas-administrator
how we can create a FLAG datasets? Ex:-ID age_group no_persons 1 to 10 10 to 20 3 11 to 20 21 to 30 7 21 to 3o 31 to 40 5
What is the order of application for output data set options, input data set options and SAS statements?
What do you code to create a macro? : sas-macro
To what type of programms have you used scratch macros?
what is information maps?
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
Describe crosslist option in tables statement?
Given an unsorted data set, how to read the last observation to a new data set?