Leverage & Cook's distance

Function for calculating leverage and Cook's distance without the use of toolboxes
154 Downloads
Aktualisiert 21 Jul 2016

Lizenz anzeigen

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)

Zitieren als

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

Kompatibilität der MATLAB-Version
Erstellt mit R2014b
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
Version Veröffentlicht Versionshinweise
2.0.0.0

- .m file added

1.0.0.0