I am working on creating a $2^n$ design (not randomized). I have done $2^5$ by hand, but I must now do $2^7$ and $2^8$. I know in Minitab there's a design generator that will list out all of the treatments / factors but I do not have access to Minitab. Is there an R package that will do the same thing?
For example, if said dream function was called "2n" and I input:
2to2 <-- 2n(2)
or something, the output would be:
2to2
A B AB
0 0 1
1 0 0
0 1 0
1 1 1
... does that make sense?
edited to add: I see the FrF2
package, but I can't seem to get a good grasp of it. Anyone familiar with it or others?
SOLVED: FrF2(nfactors = 8, resolution=8, randomize=FALSE)