candidate_set_orth {MOODE} | R Documentation |
Forms the orthonormalised full candidate set
Description
This function forms the full extended orthonormalised candidate set of primary and potential terms, with an intercept column and labels.
Usage
candidate_set_orth(cand.full, primary.terms, potential.terms)
Arguments
cand.full |
Candidate set containing terms up to 4th order, with labels in the first column. |
primary.terms |
Character vector identifying primary model terms. |
potential.terms |
Character vector identifying potential model terms. |
Value
The orthonormalised full candidate set containing primary and potential terms, with labels.
Examples
# Full extended orthonormalised candidate set for two 4-level factors,
# full quadratic polynomial model as primary model and all three-order terms as potential.
K<-2; Levels <- rep(list(1:4),K)
cand.trt <- candidate_trt_set(Levels, K)
cand.full <- candidate_set_full(cand.trt, K)
prime.terms <- colnames(cand.full)[2:7]
poten.terms <- colnames(cand.full)[8:11]
Parameters <- c(1, rep(1,K), rep(1,K), K*(K-1)/2)
candidate_set_orth(cand.full, prime.terms, poten.terms)
[Package MOODE version 1.0.1 Index]