Leverage & Cook's distance

Function for calculating leverage and Cook's distance without the use of toolboxes
154 descargas
Actualizado 21 jul 2016

Ver licencia

File name: 'levcook.m'. Function for calculating Cook's distance
and leverage without using the Statistic Toolbox.
Formula for leverage:
h = 1/L + (x-mean(x)).^2./sum((x-mean(x)).^2)
Formula for Cook's distance:
D = (err./(RMSE*p)).*(h./((1-h).^2))
Three input parameters: 'x', 'y' and 'p'
Two output parameters: 'h' and 'D'

x: Vector of x-variables
y: Vector of y-variables
p: Number of regression parameters (Default = 2)
h: Leverage
D: Cook's distance

Additionally, plots for leverage and Cook's distance will be
generated.

Developed by Joris Meurs BASc (2016)

Citar como

Joris Meurs (2024). Leverage & Cook's distance (https://www.mathworks.com/matlabcentral/fileexchange/56810-leverage-cook-s-distance), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2014b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versión Publicado Notas de la versión
2.0.0.0

- .m file added

1.0.0.0