Leverage & Cook's distance

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

View License

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)

Cite As

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

MATLAB Release Compatibility
Created with R2014b
Compatible with any release
Platform Compatibility
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
Version Published Release Notes
2.0.0.0

- .m file added

1.0.0.0