├── .Rbuildignore ├── .gitattributes ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── test-coverage.yaml ├── .gitignore ├── CRAN-SUBMISSION ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── bsef.R ├── cme.R ├── ddr.R └── utils.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── docs ├── authors.html ├── index.html ├── jquery.sticky-kit.min.js ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── bsdr.html │ ├── bsef.html │ ├── cme.html │ ├── ddr.html │ └── index.html ├── man ├── bsef.Rd ├── cme.Rd └── ddr.Rd ├── revdep └── checks.rds └── tests ├── testthat.R └── testthat ├── test-bsef.R ├── test-cme.R └── test-ddr.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/bsef.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/R/bsef.R -------------------------------------------------------------------------------- /R/cme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/R/cme.R -------------------------------------------------------------------------------- /R/ddr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/R/ddr.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/cran-comments.md -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jquery.sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/docs/jquery.sticky-kit.min.js -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/bsdr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/docs/reference/bsdr.html -------------------------------------------------------------------------------- /docs/reference/bsef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/docs/reference/bsef.html -------------------------------------------------------------------------------- /docs/reference/cme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/docs/reference/cme.html -------------------------------------------------------------------------------- /docs/reference/ddr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/docs/reference/ddr.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /man/bsef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/man/bsef.Rd -------------------------------------------------------------------------------- /man/cme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/man/cme.Rd -------------------------------------------------------------------------------- /man/ddr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/man/ddr.Rd -------------------------------------------------------------------------------- /revdep/checks.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/revdep/checks.rds -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-bsef.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/tests/testthat/test-bsef.R -------------------------------------------------------------------------------- /tests/testthat/test-cme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/tests/testthat/test-cme.R -------------------------------------------------------------------------------- /tests/testthat/test-ddr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanuelcostigan/dataonderivatives/HEAD/tests/testthat/test-ddr.R --------------------------------------------------------------------------------