/* 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 are the new features included in the new version of SAS Programming Language?
How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?
Did you used proc test? when?
Explain why double trailing @@ is used in input statement?
What makes sas stand out to be the best over other data analytics tools?
how does sas handle missing values in assignment statements? : Sas programming
What Proc glm does?
Are you involved in writing the inferential analysis plan? Tables specifications?
how to remove duplicates using proc sql?
what are several options for creating reports in web report studio? : Sas-bi
Give some examples where proc report’s defaults are same as proc print’s defaults?
Why and when do you use proc sql?
What is the use of stop statement?
What is a macro routine?
Explain by-group processing?