Description
Run Orders with Assignment-Expansion Method.
Description
It enables the identification of sequentialexperimentation orders for factorial designs that jointly reduce bias and the number of level changes. The method used is that presented by Conto et al. (2025), known as the Assignment-Expansion method, which consists of adapting the linear programming assignment problem to generate balanced experimentation orders. The properties identified are then generalized to designs with a larger number of factors and levels using the expansion method proposed by Correa et al. (2009) and later generalized by Bhowmik et al. (2017). For more details see Conto et al. (2025) <doi:10.1016/j.cie.2024.110844>, Correa et al. (2009) <doi:10.1080/02664760802499337> and Bhowmik et al. (2017) <doi:10.1080/03610926.2016.1152490>.
README.md
rob
The goal of rob is to generate experimentation run orders for factorial designs using the assignment-expansion method, considering a balance between reducing bias and level changes.
Installation
# install.packages("pak")
pak::pak("RomarioContoL/rob")
Example
library(rob)
z<-c(2,2,2,2,2,2)
runorder(z)
z<-c(4,3,2,3,2)
runorder(z)
z<-c(3,3,2,4)
runorder(z)