The Dantzig selector (DS) finds a solution for the model parameters
of a linear model, beta
using linear programming. For a given delta
,
DS minimizes the L_1-norm (sum of absolute values) of beta
subject to the constraint
that max(|t(X)(y-X * beta)|)
<= delta
.
dantzigS(X, y, delta, scale.X = 1)
A list containing the (a) opt
(Value of objective function
at optimum), (b) status
(Numeric indicator: 0 = success,
2 = no feasible solution), (c) beta
(the estimated values
of beta
), (d) delta
a design matrix.
a vector of responses.
the specific value of delta
for which the Dantzig Selector
optimization needs to be solved
a number by which each column of X
should be scaled