/* 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
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?
Mention what is SAS data set?
What is the length assigned to the target variable by the scan function?
what is metadata? : Sas-bi
what is the use of proc contents and proc print in sas? : Sas-administrator
What do you know about sas data set?
Define run-group processing?
Describe a time when you were really stuck on a problem and how you solved it?
What are the automatic variables for macro? : sas-macro
I have a dataset concat having variable a b & c. How to rename a b to e & f?
What is slibref?
What is the function of output statement in a SAS Program?
how does sas handle missing values in a merge? : Sas programming
what is the purpose of _error_? : Sas programming
What is the role of unrestrictive users? : sas-grid-administration