Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wilsonfreitas/R-bizdays
Business Days Calculations and Utilities
https://github.com/wilsonfreitas/R-bizdays
bizdays business-days calendar cran holidays market-calendar
Last synced: 3 months ago
JSON representation
Business Days Calculations and Utilities
- Host: GitHub
- URL: https://github.com/wilsonfreitas/R-bizdays
- Owner: wilsonfreitas
- License: other
- Created: 2013-09-01T14:17:15.000Z (about 11 years ago)
- Default Branch: main
- Last Pushed: 2024-02-12T12:24:16.000Z (9 months ago)
- Last Synced: 2024-03-14T18:19:21.452Z (8 months ago)
- Topics: bizdays, business-days, calendar, cran, holidays, market-calendar
- Language: R
- Homepage: http://wilsonfreitas.github.io/R-bizdays/
- Size: 1.59 MB
- Stars: 51
- Watchers: 8
- Forks: 20
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-quant - bizdays - Business days calculations and utilities (R / Calendars)
README
# [R-bizdays](https://cran.r-project.org/package=bizdays)
[![CRAN status](https://www.r-pkg.org/badges/version/bizdays)](https://cran.r-project.org/package=bizdays)
[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![Downloads](http://cranlogs.r-pkg.org/badges/bizdays)](https://cran.r-project.org/package=bizdays)
[![R-CMD-check](https://github.com/wilsonfreitas/R-bizdays/actions/workflows/check-standard.yaml/badge.svg)](https://github.com/wilsonfreitas/R-bizdays/actions/workflows/check-standard.yaml)
[![Coverage status](https://codecov.io/gh/wilsonfreitas/R-bizdays/branch/master/graph/badge.svg)](https://app.codecov.io/github/wilsonfreitas/R-bizdays?branch=master)**bizdays** computes business days between dates based on collections of
nonworking days and nonworking weekdays (usually weekends). It also
helps with other issues related to business days calculations like check
whether a date is a business day, offset a date by a number of business
days, adjust dates for the next or previous business day, create
generators of business days sequences, and much more. All functions are
vectorizable so that speed up the calculations for large collections of
dates.## Installing
It is available on [CRAN](https://cran.r-project.org/package=bizdays) to
be installed through:``` r
install.packages('bizdays')
```or using `devtools`
``` r
devtools::install_github('R-bizdays', username='wilsonfreitas')
```## Calendars
`bizdays` comes with these calendars already loaded:
``` r
library(bizdays)
#>
#> Attaching package: 'bizdays'
#> The following object is masked from 'package:stats':
#>
#> offset
calendars()
#> Calendars:
#> actual, Brazil/ANBIMA, Brazil/B3, weekends
```You can simply call bizdays declaring one of these.
``` r
following("2022-01-01", "Brazil/B3")
#> [1] "2022-01-03"
bizdays("2022-04-01", "2022-04-29", "Brazil/ANBIMA")
#> [1] 18
```