반응형
목적
오늘은 SAS Arithmetic 함수 중 MIN 함수에 대해 알아보자.
문법
MIN(argument, argument, ..., argument, argument)
: 숫자 인수들 중 가장 작은 값을 반환
예제
data a; input a b c d @@; datalines; 9 1 -1 150 ; run; data b; set a; e=MIN(a,b,c,d); run; proc print data=b; run; |
SAS 코드 실행 결과는 아래와 같다.
모든 SAS 함수 정보를 보고 싶다면 아래 링크 Click
ALL SAS Functions - SAS - Statistical Analysis System (google.com)
반응형
'끄적이는 프로그래밍 > SAS 함수' 카테고리의 다른 글
[SAS Arithmetic Functions] SIGN() (0) | 2022.11.08 |
---|---|
[SAS Arithmetic Functions] MOD() (0) | 2022.11.08 |
[SAS Arithmetic Functions] MAX() (0) | 2022.11.08 |
[SAS Arithmetic Functions] LBOUND() (0) | 2022.11.07 |
[SAS Arithmetic Functions] HBOUND() (0) | 2022.11.07 |