/* 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 / sravan
proc means data=before3 max min ;
run;
Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
what does the run statement do? : Sas programming
Explain the difference between informat and format with an example.
Hi, If anyone has base SAS certification dumps, please share.
What is by-group processing?
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
In SAS explain which statement does not perform automatic conversions in comparisons?
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
what is the difference between infile and input? : Sas-administrator
What is SAS?
What is the difference between match merge and one to one merge?
how many display types available in sas bi dashboard? : Sas-bi
what is enterprise guide? What is the use of it? : Sas programming
: and & modifiers.
How do dates work in sas?
What function CATX syntax does?