├── .Rbuildignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── r.yml ├── .gitignore ├── CITATION.cff ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── equations.R └── hypr.R ├── README.Rmd ├── README.md ├── inst └── CITATION ├── man ├── centered_contrasts.Rd ├── cmat.Rd ├── combination.Rd ├── conversions.Rd ├── filler_contrasts.Rd ├── formula-set.Rd ├── ginv2.Rd ├── hmat.Rd ├── hypr-class.Rd ├── hypr.Rd └── is_intercept.Rd ├── paper.Rmd ├── paper.bib ├── paper.md └── vignettes ├── hypr-contrasts.Rmd ├── hypr-intro.Rmd └── hypr-regression.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/r.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/.github/workflows/r.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/CITATION.cff -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/equations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/R/equations.R -------------------------------------------------------------------------------- /R/hypr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/R/hypr.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/README.md -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/centered_contrasts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/man/centered_contrasts.Rd -------------------------------------------------------------------------------- /man/cmat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/man/cmat.Rd -------------------------------------------------------------------------------- /man/combination.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/man/combination.Rd -------------------------------------------------------------------------------- /man/conversions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/man/conversions.Rd -------------------------------------------------------------------------------- /man/filler_contrasts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/man/filler_contrasts.Rd -------------------------------------------------------------------------------- /man/formula-set.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/man/formula-set.Rd -------------------------------------------------------------------------------- /man/ginv2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/man/ginv2.Rd -------------------------------------------------------------------------------- /man/hmat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/man/hmat.Rd -------------------------------------------------------------------------------- /man/hypr-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/man/hypr-class.Rd -------------------------------------------------------------------------------- /man/hypr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/man/hypr.Rd -------------------------------------------------------------------------------- /man/is_intercept.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/man/is_intercept.Rd -------------------------------------------------------------------------------- /paper.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/paper.Rmd -------------------------------------------------------------------------------- /paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/paper.bib -------------------------------------------------------------------------------- /paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/paper.md -------------------------------------------------------------------------------- /vignettes/hypr-contrasts.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/vignettes/hypr-contrasts.Rmd -------------------------------------------------------------------------------- /vignettes/hypr-intro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/vignettes/hypr-intro.Rmd -------------------------------------------------------------------------------- /vignettes/hypr-regression.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmrabe/hypr/HEAD/vignettes/hypr-regression.Rmd --------------------------------------------------------------------------------