├── .Rbuildignore ├── .github └── workflows │ ├── r-pr.yml │ └── r.yml ├── DESCRIPTION ├── MD5 ├── NAMESPACE ├── R ├── anova.lmp.R ├── aovp.R ├── lmPerm.R ├── lmp.R ├── multResp.R ├── permtst.R ├── poly.formula.R ├── summary.aovp.R └── summaryC.R ├── README.md ├── data ├── Alfalfa.rda ├── CC164.rda ├── Federer276.rda ├── Federer276Numeric.rda ├── Hald17.4.rda ├── NPK.rda ├── Plasma.rda ├── Quinlan.rda ├── composite.rda ├── ghoctane.rda ├── manly126.rda ├── manly136.rda ├── ratGenotype.rda ├── simDesign.rda ├── simDesignPartNumeric.rda └── wool.rda ├── lmPerm.Rproj ├── man ├── Alfalfa.Rd ├── CC164.Rd ├── Federer276.Rd ├── Federer276Numeric.Rd ├── Hald17.4.Rd ├── NPK.Rd ├── Plasma.Rd ├── Quinlan.Rd ├── aovp.Rd ├── composite.Rd ├── ghoctane.Rd ├── lmPerm-Internal.Rd ├── lmp.Rd ├── manly126.Rd ├── manly136.Rd ├── multResp.Rd ├── permute.Rd ├── poly.formula.Rd ├── ratGenotype.Rd ├── simDesign.Rd ├── simDesignPartNumeric.Rd ├── summary.Rd ├── summaryC.Rd └── wool.Rd ├── src ├── lmPerm.c └── wheeler.h ├── tests ├── testthat.R └── testthat │ └── testlmp.R └── vignettes ├── GeneralBib.bib └── lmPerm.Rnw /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/r-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/.github/workflows/r-pr.yml -------------------------------------------------------------------------------- /.github/workflows/r.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/.github/workflows/r.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/MD5 -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/anova.lmp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/R/anova.lmp.R -------------------------------------------------------------------------------- /R/aovp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/R/aovp.R -------------------------------------------------------------------------------- /R/lmPerm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/R/lmPerm.R -------------------------------------------------------------------------------- /R/lmp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/R/lmp.R -------------------------------------------------------------------------------- /R/multResp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/R/multResp.R -------------------------------------------------------------------------------- /R/permtst.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/R/permtst.R -------------------------------------------------------------------------------- /R/poly.formula.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/R/poly.formula.R -------------------------------------------------------------------------------- /R/summary.aovp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/R/summary.aovp.R -------------------------------------------------------------------------------- /R/summaryC.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/R/summaryC.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/README.md -------------------------------------------------------------------------------- /data/Alfalfa.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/data/Alfalfa.rda -------------------------------------------------------------------------------- /data/CC164.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/data/CC164.rda -------------------------------------------------------------------------------- /data/Federer276.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/data/Federer276.rda -------------------------------------------------------------------------------- /data/Federer276Numeric.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/data/Federer276Numeric.rda -------------------------------------------------------------------------------- /data/Hald17.4.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/data/Hald17.4.rda -------------------------------------------------------------------------------- /data/NPK.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/data/NPK.rda -------------------------------------------------------------------------------- /data/Plasma.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/data/Plasma.rda -------------------------------------------------------------------------------- /data/Quinlan.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/data/Quinlan.rda -------------------------------------------------------------------------------- /data/composite.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/data/composite.rda -------------------------------------------------------------------------------- /data/ghoctane.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/data/ghoctane.rda -------------------------------------------------------------------------------- /data/manly126.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/data/manly126.rda -------------------------------------------------------------------------------- /data/manly136.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/data/manly136.rda -------------------------------------------------------------------------------- /data/ratGenotype.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/data/ratGenotype.rda -------------------------------------------------------------------------------- /data/simDesign.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/data/simDesign.rda -------------------------------------------------------------------------------- /data/simDesignPartNumeric.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/data/simDesignPartNumeric.rda -------------------------------------------------------------------------------- /data/wool.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/data/wool.rda -------------------------------------------------------------------------------- /lmPerm.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/lmPerm.Rproj -------------------------------------------------------------------------------- /man/Alfalfa.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/Alfalfa.Rd -------------------------------------------------------------------------------- /man/CC164.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/CC164.Rd -------------------------------------------------------------------------------- /man/Federer276.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/Federer276.Rd -------------------------------------------------------------------------------- /man/Federer276Numeric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/Federer276Numeric.Rd -------------------------------------------------------------------------------- /man/Hald17.4.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/Hald17.4.Rd -------------------------------------------------------------------------------- /man/NPK.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/NPK.Rd -------------------------------------------------------------------------------- /man/Plasma.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/Plasma.Rd -------------------------------------------------------------------------------- /man/Quinlan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/Quinlan.Rd -------------------------------------------------------------------------------- /man/aovp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/aovp.Rd -------------------------------------------------------------------------------- /man/composite.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/composite.Rd -------------------------------------------------------------------------------- /man/ghoctane.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/ghoctane.Rd -------------------------------------------------------------------------------- /man/lmPerm-Internal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/lmPerm-Internal.Rd -------------------------------------------------------------------------------- /man/lmp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/lmp.Rd -------------------------------------------------------------------------------- /man/manly126.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/manly126.Rd -------------------------------------------------------------------------------- /man/manly136.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/manly136.Rd -------------------------------------------------------------------------------- /man/multResp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/multResp.Rd -------------------------------------------------------------------------------- /man/permute.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/permute.Rd -------------------------------------------------------------------------------- /man/poly.formula.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/poly.formula.Rd -------------------------------------------------------------------------------- /man/ratGenotype.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/ratGenotype.Rd -------------------------------------------------------------------------------- /man/simDesign.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/simDesign.Rd -------------------------------------------------------------------------------- /man/simDesignPartNumeric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/simDesignPartNumeric.Rd -------------------------------------------------------------------------------- /man/summary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/summary.Rd -------------------------------------------------------------------------------- /man/summaryC.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/summaryC.Rd -------------------------------------------------------------------------------- /man/wool.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/man/wool.Rd -------------------------------------------------------------------------------- /src/lmPerm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/src/lmPerm.c -------------------------------------------------------------------------------- /src/wheeler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/src/wheeler.h -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/testlmp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/tests/testthat/testlmp.R -------------------------------------------------------------------------------- /vignettes/GeneralBib.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/vignettes/GeneralBib.bib -------------------------------------------------------------------------------- /vignettes/lmPerm.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorchiano/lmPerm/HEAD/vignettes/lmPerm.Rnw --------------------------------------------------------------------------------