/* 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;
Answers were Sorted based on User's Feedback
Answer / chandrakanth
proc means data=befor3 max min;
var v1;
run;
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / venkatesh
proc tabulate data=datasetname;
var v1;
table (min max)*v1;
run;
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / 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 |
Answer / sonia
Obs v1 v2 v3
1 3 2 1
2 4 6 5
3 2 1 3
4 6 5 4
5 1 3 2
6 5 4 6
| Is This Answer Correct ? | 0 Yes | 4 No |
what is data governance? : Sas-di
who is the best SAS clinical Trainer in Hyderabad?
If a variable contains letters or special characters, can it be numeric data type?
Are the preferred term counts are always equal to Body system counts? If so, Why are they equal if not why they are not equal?
What are the joins,types of joins and thier functions?
explain the concepts and capabilities of business object? : Sas-bi
What are the scrubbing procedures in sas?
Describe the types of SAS programming tasks that you performed like Tables? Listings? Graphics? Ad hoc reports? Other?
Are you involved in writing the inferential analysis plan? Tables specfications?
Which command is used to save logs in the external file?
why only we use SAS? their r many programmin language like SPSS, Oracle... Why SAS?
Can we create datasets by proc step ? (Proc contents, Means)?