├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── ExpertChoice.Rproj ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── augment_levels.R ├── check_overshadow.R ├── construct_question_frame.R ├── dce_efficiency.R ├── fractional_factorial_efficiency.R ├── full_factorial.R ├── modulo_method.R └── search_design.R ├── README.md ├── cran-comments.md ├── man ├── augment_levels.Rd ├── check_overshadow.Rd ├── construct_question_frame.Rd ├── dce_efficiency.Rd ├── fractional_factorial_efficiency.Rd ├── full_factorial.Rd ├── modulo_method.Rd └── search_design.Rd └── vignettes ├── .gitignore ├── practical.Rmd ├── references.bib ├── theory-ExpertChoice.pdf ├── theory-ExpertChoice.synctex.gz └── theory-ExpertChoice.tex /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | 3 | \.Rhistory 4 | inst/doc 5 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /ExpertChoice.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/ExpertChoice.Rproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Jed Stephens 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/augment_levels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/R/augment_levels.R -------------------------------------------------------------------------------- /R/check_overshadow.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/R/check_overshadow.R -------------------------------------------------------------------------------- /R/construct_question_frame.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/R/construct_question_frame.R -------------------------------------------------------------------------------- /R/dce_efficiency.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/R/dce_efficiency.R -------------------------------------------------------------------------------- /R/fractional_factorial_efficiency.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/R/fractional_factorial_efficiency.R -------------------------------------------------------------------------------- /R/full_factorial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/R/full_factorial.R -------------------------------------------------------------------------------- /R/modulo_method.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/R/modulo_method.R -------------------------------------------------------------------------------- /R/search_design.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/R/search_design.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/cran-comments.md -------------------------------------------------------------------------------- /man/augment_levels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/man/augment_levels.Rd -------------------------------------------------------------------------------- /man/check_overshadow.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/man/check_overshadow.Rd -------------------------------------------------------------------------------- /man/construct_question_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/man/construct_question_frame.Rd -------------------------------------------------------------------------------- /man/dce_efficiency.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/man/dce_efficiency.Rd -------------------------------------------------------------------------------- /man/fractional_factorial_efficiency.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/man/fractional_factorial_efficiency.Rd -------------------------------------------------------------------------------- /man/full_factorial.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/man/full_factorial.Rd -------------------------------------------------------------------------------- /man/modulo_method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/man/modulo_method.Rd -------------------------------------------------------------------------------- /man/search_design.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/man/search_design.Rd -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/practical.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/vignettes/practical.Rmd -------------------------------------------------------------------------------- /vignettes/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/vignettes/references.bib -------------------------------------------------------------------------------- /vignettes/theory-ExpertChoice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/vignettes/theory-ExpertChoice.pdf -------------------------------------------------------------------------------- /vignettes/theory-ExpertChoice.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/vignettes/theory-ExpertChoice.synctex.gz -------------------------------------------------------------------------------- /vignettes/theory-ExpertChoice.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedStephens/ExpertChoice/HEAD/vignettes/theory-ExpertChoice.tex --------------------------------------------------------------------------------