├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── check-standard.yaml │ ├── document.yaml │ └── style.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── tidyLP-package.R └── tidy_lp.R ├── README.Rmd ├── README.md ├── data └── fantasy_points.rda ├── man ├── add_constraints.Rd ├── all_variables.Rd ├── bind_solution.Rd ├── categorical_constraint.Rd ├── fantasy_points.Rd ├── leq.Rd ├── lp_solve.Rd ├── pretty_constraint.Rd ├── pretty_tlp.Rd ├── tidyLP-package.Rd └── tidy_lp.Rd ├── tests ├── testthat.R └── testthat │ └── test-tidy_lp.R └── tidyLP.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/check-standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/.github/workflows/check-standard.yaml -------------------------------------------------------------------------------- /.github/workflows/document.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/.github/workflows/document.yaml -------------------------------------------------------------------------------- /.github/workflows/style.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/.github/workflows/style.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2022 2 | COPYRIGHT HOLDER: Colin Fraser 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/tidyLP-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/R/tidyLP-package.R -------------------------------------------------------------------------------- /R/tidy_lp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/R/tidy_lp.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/README.md -------------------------------------------------------------------------------- /data/fantasy_points.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/data/fantasy_points.rda -------------------------------------------------------------------------------- /man/add_constraints.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/man/add_constraints.Rd -------------------------------------------------------------------------------- /man/all_variables.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/man/all_variables.Rd -------------------------------------------------------------------------------- /man/bind_solution.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/man/bind_solution.Rd -------------------------------------------------------------------------------- /man/categorical_constraint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/man/categorical_constraint.Rd -------------------------------------------------------------------------------- /man/fantasy_points.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/man/fantasy_points.Rd -------------------------------------------------------------------------------- /man/leq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/man/leq.Rd -------------------------------------------------------------------------------- /man/lp_solve.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/man/lp_solve.Rd -------------------------------------------------------------------------------- /man/pretty_constraint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/man/pretty_constraint.Rd -------------------------------------------------------------------------------- /man/pretty_tlp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/man/pretty_tlp.Rd -------------------------------------------------------------------------------- /man/tidyLP-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/man/tidyLP-package.Rd -------------------------------------------------------------------------------- /man/tidy_lp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/man/tidy_lp.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-tidy_lp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/tests/testthat/test-tidy_lp.R -------------------------------------------------------------------------------- /tidyLP.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin-fraser/tidyLP/HEAD/tidyLP.Rproj --------------------------------------------------------------------------------