Compute log likelihood after fitting the GLM?

2 Ansichten (letzte 30 Tage)
Marris Atwood
Marris Atwood am 9 Jun. 2015
Bearbeitet: Marris Atwood am 9 Jun. 2015
I am playing around with a toy general linear model (GLM) with MATLAB glmfit.
X=[1;2;3;4];
y=[1.1;2.2;3.5;4.9];
[b, dev, stats] = glmfit(X, y);
How should I compute the log likelihood of the data? I want to do
y_fit = glmval(b, X, 'identity');
ll = nansum(log(normpdf(y, y_fit, sigma)));
But how to find sigma, the standard deviation of the Gaussian?

Antworten (0)

Kategorien

Mehr zu Linear and Nonlinear Regression finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by