Basic
1
2
| today <- Sys.Date()
first_day_of_month <- today - (as.integer(substr(today, 9, 10)) - 1)
|
1
| c(today, first_day_of_month)
|
1
| ## [1] "2024-06-28" "2024-06-01"
|
1
2
| today <- as.Date("2024-12-31")
today + 2
|
lubridate package
그 달 첫 날
floor_date()
함수는 unit
단위에 맞춰 내림을 한다. unit이 month
인 경우 그 달 첫 날을 의미하게 된다.
1
| floor_date(today(), unit = "month")
|
그 달 막 날
ceiling_date()
함수는 unit
단위에 맞춰 올올림을 한다. unit이 month
인 경우 그 다음 첫 날을 의미하게 된다. 따라서 그 달 마지막 날을 계산하기 위해서는 하루를 빼 주면 된다.
1
| ceiling_date(today(), unit = "month") - 1
|
1
2
| last_day_of_this_year <- ceiling_date(as.Date("2024-12-30"), unit = "month") - 1
first_day_of_next_year <- ceiling_date(as.Date("2024-12-30"), unit = "month")
|
1
| c(last_day_of_this_year, first_day_of_next_year)
|
1
| ## [1] "2024-12-31" "2025-01-01"
|
_EOF_