DDSE {capushe} | R Documentation |
Model selection by Data-Driven Slope Estimation
Description
DDSE
is a model selection function based on the slope heuristics.
Usage
DDSE(data, pct = 0.15, point = 0, psi.rlm = psi.bisquare, scoef = 2)
Arguments
data |
|
pct |
Minimum percentage of points for the plateau selection. It must be between 0 and 1. Default value is 0.15. |
point |
Minimum number of point for the plateau selection.
If |
psi.rlm |
Weight function used by |
scoef |
Ratio parameter. Default value is 2. |
Details
Let be the model collection and
.
The DDSE algorithm proceeds in four steps:
If several models in the collection have the same penalty shape value (column 2), only the model having the smallest contrast value
(column 4) is considered.
For any
, the slope
(argument
@kappa
) of the linear regression (argumentpsi.rlm
) on the couples of pointsis computed.
For any
, the model fulfilling the following condition is selected:
argmin
.
This gives an increasing sequence of change-points
(output
@ModelHat$point_breaking
). Let(output
@ModelHat$number_plateau
) be the lengths of each "plateau".If
point
is different from 0, letmax
else let
max
(output
@ModelHat$imax
). The model(output
@model
) is finally returned.
The "slope interval" is the interval where
and
.
Value
@model |
The |
@kappa |
The vector of the successive slope values. |
@ModelHat |
A list describing the algorithm. |
@ModelHat$model_hat |
The vector of preselected models |
@ModelHat$point_breaking |
The vector of the breaking points |
@ModelHat$number_plateau |
The vector of the lengths |
@ModelHat$imax |
The rank |
@interval |
A list about the "slope interval". |
@interval$interval |
The slope interval. |
@interval$percent_of_points |
The proportion |
@graph |
A list computed for the |
Author(s)
Vincent Brault
References
http://www.math.univ-toulouse.fr/~maugis/CAPUSHE.html
http://www.math.u-psud.fr/~brault/capushe.html
Article: Baudry, J.-P., Maugis, C. and Michel, B. (2011) Slope heuristics: overview and implementation. Statistics and Computing, to appear. doi: 10.1007/ s11222-011-9236-1
See Also
capushe
for a model selection function including AIC
,
BIC
, the DDSE
algorithm and the Djump
algorithm.
plot
for graphical dsiplays of the DDSE
algorithm
and the Djump
algorithm.
Examples
data(datacapushe)
DDSE(datacapushe)
plot(DDSE(datacapushe))
## DDSE with "lm" for the regression
DDSE(datacapushe,psi.rlm="lm")