├── .Rbuildignore ├── .gitattributes ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── bestlag.R ├── comp_corr.R ├── corr_bestlag.R ├── findC.R ├── prep_data.R ├── score.R ├── simdata.R ├── weight.R ├── weight_lag.R └── wt_corr.R ├── README.md ├── appveyor.yml ├── data └── simdata.rda ├── inst └── CITATION ├── man ├── best.lag.Rd ├── comp.corr.Rd ├── corr.bestlag.Rd ├── findC.Rd ├── prep.data.Rd ├── score.Rd ├── simdata.Rd ├── weight.Rd ├── weight.lag.Rd └── wt.corr.Rd ├── tests ├── testthat.R └── testthat │ ├── test_best_lag.R │ ├── test_comp_corr.R │ ├── test_corr_bestlag.R │ ├── test_findC.R │ ├── test_prep_data.R │ ├── test_score.R │ ├── test_weight.R │ ├── test_weight_lag.R │ └── test_wt_corr.R └── vignettes └── LPWC.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2017 2 | COPYRIGHT HOLDER: Thevaa Chandereng, Anthony Gitter 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/bestlag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/R/bestlag.R -------------------------------------------------------------------------------- /R/comp_corr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/R/comp_corr.R -------------------------------------------------------------------------------- /R/corr_bestlag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/R/corr_bestlag.R -------------------------------------------------------------------------------- /R/findC.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/R/findC.R -------------------------------------------------------------------------------- /R/prep_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/R/prep_data.R -------------------------------------------------------------------------------- /R/score.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/R/score.R -------------------------------------------------------------------------------- /R/simdata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/R/simdata.R -------------------------------------------------------------------------------- /R/weight.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/R/weight.R -------------------------------------------------------------------------------- /R/weight_lag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/R/weight_lag.R -------------------------------------------------------------------------------- /R/wt_corr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/R/wt_corr.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/appveyor.yml -------------------------------------------------------------------------------- /data/simdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/data/simdata.rda -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/best.lag.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/man/best.lag.Rd -------------------------------------------------------------------------------- /man/comp.corr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/man/comp.corr.Rd -------------------------------------------------------------------------------- /man/corr.bestlag.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/man/corr.bestlag.Rd -------------------------------------------------------------------------------- /man/findC.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/man/findC.Rd -------------------------------------------------------------------------------- /man/prep.data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/man/prep.data.Rd -------------------------------------------------------------------------------- /man/score.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/man/score.Rd -------------------------------------------------------------------------------- /man/simdata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/man/simdata.Rd -------------------------------------------------------------------------------- /man/weight.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/man/weight.Rd -------------------------------------------------------------------------------- /man/weight.lag.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/man/weight.lag.Rd -------------------------------------------------------------------------------- /man/wt.corr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/man/wt.corr.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_best_lag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/tests/testthat/test_best_lag.R -------------------------------------------------------------------------------- /tests/testthat/test_comp_corr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/tests/testthat/test_comp_corr.R -------------------------------------------------------------------------------- /tests/testthat/test_corr_bestlag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/tests/testthat/test_corr_bestlag.R -------------------------------------------------------------------------------- /tests/testthat/test_findC.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/tests/testthat/test_findC.R -------------------------------------------------------------------------------- /tests/testthat/test_prep_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/tests/testthat/test_prep_data.R -------------------------------------------------------------------------------- /tests/testthat/test_score.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/tests/testthat/test_score.R -------------------------------------------------------------------------------- /tests/testthat/test_weight.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/tests/testthat/test_weight.R -------------------------------------------------------------------------------- /tests/testthat/test_weight_lag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/tests/testthat/test_weight_lag.R -------------------------------------------------------------------------------- /tests/testthat/test_wt_corr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/tests/testthat/test_wt_corr.R -------------------------------------------------------------------------------- /vignettes/LPWC.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitter-lab/LPWC/HEAD/vignettes/LPWC.Rmd --------------------------------------------------------------------------------