Leverage & Cook's distance

Function for calculating leverage and Cook's distance without the use of toolboxes
154 download
Aggiornato 21 lug 2016

Visualizza la licenza

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)

Cita come

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

Compatibilità della release di MATLAB
Creato con R2014b
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
Versione Pubblicato Note della release
2.0.0.0

- .m file added

1.0.0.0