HUc computes breakdown point and efficiency associated with constant c for Huber link
bdp=HUc(c,v)
[bdp,eff]=HUc(___)
example
bdp =HUc(c, v) HUc with just one output argument.
bdp =HUc(c, v)
bdp
c
v
[bdp, eff] =HUc(___) HUc with 2 output arguments.
[bdp, eff] =HUc(___)
eff
expand all
[bdp]=HUc(2,1); disp('Break down point') disp(bdp)
[bdp,eff]=HUc(2,1) disp('Break down point and efficiency') disp(bdp) disp(eff)
Analysis of breakdown point and asymptotic efficiency at the normal distribution as a function of c in regression.
c=0:0.01:6; [bdp,eff]=HUc(c,1); subplot(2,1,1) plot(c,bdp,'LineWidth',2) xlabel('c','Interpreter','Latex','FontSize',16) ylabel('Breakdown point','Interpreter','none') subplot(2,1,2) plot(c,eff,'LineWidth',2) xlabel('c','Interpreter','Latex','FontSize',16) ylabel('Asymptotic efficiency','Interpreter','none')
greater than 0 which controls the robustness/efficiency of the estimator
Data Types: single| double
single| double
Number of variables of the dataset (for regression v=1) Now it is implemented just for v=1
bdp has the same dimension of c.
eff has the same dimension of c.
Huber, P.J. (1981), "Robust Statistics", Wiley.
Huber, P.J. and Ronchetti, E.M. (2009), "Robust Statistics, 2nd Edition", Wiley.
TBc | HYPc | HAc | OPTc
TBc
HYPc
HAc
OPTc