/* 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 / alok karan
/* 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;
proc sql;
select max(v1)as maximum , min(v1) as minimum
from before3;
quit;
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are symget and symput? : sas-macro
What is a put statement?
Can you suggest us materials for sdtm mapping?
explain the concepts and capabilities of business object? : Sas-bi
Explain the special input delimiters used in sas programming.
Why double trailing @@ is used in input statement?
why is sas considered self-documenting? : Sas programming
What are the ways in which macro variables can be created in sas programming?
hi here is a problem can anybody solve this? i want to report the data through third party file. by using data _null_ or proc report or macro automation process. but i want to insert the 'titles and footnotes' in between the data and also starting of 2nd and ending of 2nd and starting of 3rd and ending of the 3rd page. tell me how and write the code?
What is run-group processing?
What are the uses of sas?
how can you import .csv file in to sas? : Sas programming
I need level 2 to 5 sas using companies in india
Which command is used to perform sorting in sas program?
Explain the use of proc print and proc contents?