/* 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 / chandrakanth
proc means data=befor3 max min;
var v1;
run;
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Mention sas system options to debug sas macros.
Tell e how how dealt with..
How substr function works in sas?
What are the different versions of sas that you have used until now? : sas-grid-administration
Given an unsorted data set, how to read the last observation to a new data set?
what is enterprise guide? What is the use of it? : Sas programming
what is SAS OPTIMIZATION?
Differentiate between ceil and floor functions.
what is null hypothesis? why do you consider that?
How do you test for missing values?
what is the effect of the options statement errors=1? : Sas programming
How do you add a number to a macro variable? : sas-macro
what is PhaseIII, ODS, TLG, Macro and Proc in SAS
What is the role of administrative users? : sas-grid-administration
Which function is used to count the number of intervals between two sas dates?