The SAS min() function allows you to find the minimum value across columns and returns the smallest number in a data step.
data example;
a = min(1,4,7);
put a;
b = min(1,.,-1);
put b;
run;
/* Log Output */
1
-1
When working with different data in programming, the ability to be able to easily find summary statistics of pieces of your data is valuable.
One such case is if you want to find the minimum number of multiple values.
In a SAS data step, you can find the minimum number of multiple numbers or multiple columns with the min() function.
Below shows you some simple examples of using min() in a SAS data step.
data example;
a = min(1,4,7);
put a;
b = min(1,.,-1);
put b;
run;
/* Log Output */
1
-1
Find Minimum Across Columns in Data Step with min()
You can use min() to create a new column which has the minimum value across a number of columns in a SAS dataset.
For example, let’s say you had some variables and wanted to find the minimum of each observation for those variables.
To do this, you can use min() and pass the column names as the arguments.
Below shows you how to create a new column which is the minimum value across the columns A, B and C in a data step.
data example;
input A B C;
datalines;
5 1 2
4 2 3
3 3 4
2 4 5
1 5 6
;
run;
data example_with_min;
set example;
M = min(A,B,C);
run;
/* Output */
A B C M
5 1 2 1
4 2 3 2
3 3 4 3
2 4 5 2
1 5 6 1
Treatment of Missing Values with SAS min() Function in Data Steps
If your data has missing values, then you have to be aware of how min() calculates the minimum if you have values which are missing that are passed to min().
In general, missing values will be ignored by min().
This is shown below, where I’ve included one missing value in the call to min().
data example;
a = min(1,.,-1);
put a;
run;
/* Log Output */
-1
However, if all values are missing, then min() will return a missing value.
data example;
a = min(.,.,.);
put a;
run;
/* Log Output */
.
Find Minimum of Entire Column in SAS with PROC MEANS
If you want to find the minimum of an entire column, then you should use PROC MEANS.
In SAS, PROC MEANS is a procedure which allows you to create summaries of your data and allows you to calculate things like the sum, mean, min, max, etc. of a variable.
You can find the minimum of an entire column by specifying the MIN option with PROC MEANS.
Below shows you how to find the minimum of an entire column using the SAS PROC MEANS procedure.
data example;
input group $ value;
datalines;
A 1
A 2
A 3
B 4
B 5
B 6
C 7
C 8
;
run;
proc means data=example min;
variable value;
run;
Find Maximum Across Columns in Data Step with max() Function
If you’d instead like to find the maximum of values in a SAS data step, you can use the SAS max() function.
max() works in the same way as min() and allows you to find the maximum across multiple columns in a SAS data set.
Below shows some simple examples of how you can use max() in a SAS data step.
data example;
a = max(1,4,7);
put a;
b = max(1,.,-1);
put b;
run;
/* Log Output */
7
1
Hopefully this article has been useful for you to learn how to use the SAS min() function in your SAS programs.