/* To determine the maximum and minimum of V1 */
data before3;
input v1 v2 v3;
cards;
3 2 1
4 6 5
2 1 3
6 5 4
1 3 2
5 4 6
;
run;
Answer Posted / venkatesh
proc tabulate data=datasetname;
var v1;
table (min max)*v1;
run;
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Which statement does not perform automatic conversions in comparisons?
What is the command used to find missing values?
hi tell be about pfizer? how to compare the work with other companies ? please tell me how to login and work also?
What are the five ways to do a table lookup in sas? : sas-grid-administration
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?
how does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming
What versions of SAS have you used (on which platforms)?
explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di
explain what is data set in sas? : Sas-administrator
What are the features of base sas system?
What areas of SAS are you most interested in?
What does proc print, and proc contents are used for?
how does sas handle missing values in formats? : Sas programming
for what purpose would you use the retain statement? : Sas programming
What is the function of Stop statement in a SAS Program?