## Shrinkage design matrix examples for a model with an
## intercept and 4 predictors:
## 1. Uniform shrinkage (default design within apricomp).
sdm1 <- matrix(c(0, rep(1, 4)), nrow = 1)
print(sdm1)
## 2. Non-uniform shrinkage; 1 shrinkage factor applied only to the
## first two predictors
sdm2 <- matrix(c(0, 1, 1, 0, 0), nrow = 1)
print(sdm2)
Run the code above in your browser using DataLab