/* 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 / venkatesh
proc tabulate data=datasetname;
var v1;
table (min max)*v1;
run;
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
how does sas handle missing values in sort order? : Sas programming
What is the maximum and minimum length of macro variable
Is the physical structure of the data set in the same orientation as the report? Do you need to reshape the data sets? What method should you use to reshape the data–DATA steps,PROC TRANSPOSE,output data set from a procedure?
I have 3 years of work experience at a startup and recently got certified in Data Science with SAS. I need to know how to get into the analytics industry
why a stop statement is needed for the point= option on a set statement?
What are types of transport files?
How will you react when, while consulting a SAS documentation manual to get an answer to a problem, someone says hey, I thought you were supposed to know all that stuff already, and not have to look it up in a book?
Explain append procedure?
What are the ways to do a “table lookup” in sas?
Explain proc univariate?
what r the job openings SAS for fresher graduates !
How to read an input file in sas?
What is the basic structure of the SAS base program?
What makes sas stand out to be the best over other data analytics tools?
How do you test for missing values?