/* 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 was the last computer book you purchased? Why?
Explain data_null_?
what are sas/access and sas/connect? : Sas programming
what are sas bi dashboard components? : Sas-bi
What will calendar procedure do?
hi tell be about pfizer? how to compare the work with other companies ? please tell me how to login and work also?
What is the difference between %local and %global? : sas-macro
What are the functions used for character handling?
What are the functions which are used for character handling functions?
How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?
what is the basic structure sas administrator? : Sas-administrator
how would you determine the number of missing or nonmissing values in computations? : Sas programming
what can you learn from the sas log when debugging? : Sas programming
What versions of SAS have you used (on which platforms)?
what are several options for creating reports in web report studio? : Sas-bi