반응형
목적
오늘은 SAS Date and Time 함수 중 YRDIF 함수에 대해 알아보자.
문법
YRDIF(sdate,edate,basis)
: SAS 날짜 값에서 연도를 두 날짜 사이의 연도 차이를 반환
<Basis - 'month/year'>
'30/360', 'ACT/ACT', 'ACT/360', 'ACT/365'
예제
data a; a1=10000; a2=20000; b=YRDIF(a1,a2,"ACT/ACT"); format a1 a2 yymmdd10.; run; proc print data=a; run; |
SAS 코드 실행 결과는 아래와 같다.
모든 SAS 함수 정보를 보고 싶다면 아래 링크 Click
ALL SAS Functions - SAS - Statistical Analysis System (google.com)
반응형
'끄적이는 프로그래밍 > SAS 함수' 카테고리의 다른 글
[SAS Mathematical Functions] AIRY() (0) | 2023.01.12 |
---|---|
[SAS Date and Time Functions] YYQ() (0) | 2023.01.12 |
[SAS Date and Time Functions] YEAR() (0) | 2023.01.12 |
[SAS Date and Time Functions] WEEKDAY() (0) | 2023.01.11 |
[SAS Date and Time Functions] TODAY() (0) | 2023.01.11 |