/* 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
What is a method to debug and test your SAS program?
What was the last computer book you purchased? Why?
what r the job openings SAS for fresher graduates !
How to specify variables to be processed by the freq procedure?
Give an example where SAS fails to convert character value to numeric value automatically?
what are the new features included in the new version of sas i.e., Sas 9.1.3? : Sas programming
What are the table names in oracle database...?
what are the benefits of data integration? : Sas-di
why a stop statement is needed for the point= option on a set statement?
Differentiate between ceil and floor functions.
what do the sas log messages "numeric values have been converted to character" mean? : Sas programming
what is the function of catx syntax? : Sas-administrator
How do you connect the desktop application to metadata server? : sas-grid-administration
What are the differences between sum function and using “+” operator?
What is the difference between input and infile statement?