├── .Rbuildignore ├── .gitignore ├── .gitmodules ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── Makefile ├── NAMESPACE ├── R ├── generics.R ├── helper.R ├── simulate.R ├── tprf.R └── utils.R ├── inst └── benchmarks │ └── run_bench ├── man └── TPRF.Rd ├── readme.org ├── test_custom └── tests ├── testthat.R └── testthat ├── test-basic.R ├── test-estimators.R ├── test-generics.R ├── test-helper.R └── test-utils.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: <2015> 2 | COPYRIGHT HOLDER: 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/generics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/R/generics.R -------------------------------------------------------------------------------- /R/helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/R/helper.R -------------------------------------------------------------------------------- /R/simulate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/R/simulate.R -------------------------------------------------------------------------------- /R/tprf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/R/tprf.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/R/utils.R -------------------------------------------------------------------------------- /inst/benchmarks/run_bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/inst/benchmarks/run_bench -------------------------------------------------------------------------------- /man/TPRF.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/man/TPRF.Rd -------------------------------------------------------------------------------- /readme.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/readme.org -------------------------------------------------------------------------------- /test_custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/test_custom -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-basic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/tests/testthat/test-basic.R -------------------------------------------------------------------------------- /tests/testthat/test-estimators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/tests/testthat/test-estimators.R -------------------------------------------------------------------------------- /tests/testthat/test-generics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/tests/testthat/test-generics.R -------------------------------------------------------------------------------- /tests/testthat/test-helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/tests/testthat/test-helper.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshmaelBelghazi/ThreePass/HEAD/tests/testthat/test-utils.R --------------------------------------------------------------------------------