/* 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


Please Help Members By Posting Answers For Below Questions

What do the sas log messages “numeric values have been converted to character” mean? What are the implications?

718


What is the basic syntax style in SAS?

619


what is the use of proc contents and proc print in sas? : Sas-administrator

603


Intern stastical programmer written test

288


how can you create zero observation dataset? : Sas programming

639






Compare sas with other data analytics tools.

582


To what type of programms have you used scratch macros?

2141


Explain substr function?

577


What’s the difference between var b1 – b3 and var b1 — b3?

826


Name some categories in sas 9? : sas-grid-administration

557


How do you add a number to a macro variable? : sas-macro

545


Describe a time when you were really stuck on a problem and how you solved it?

2205


What is the use of stop statement?

643


Tell me more about the parameters in macro? : sas-macro

591


explain what is data set in sas? : Sas-administrator

526