Return the fit (parameter vector b, quality of fit including rSquared).
Show the flaw by printing the error message.
Show the flaw by printing the error message.
the method where the error occurred
the error message
For a given parameter vector b, compute -2 * Log-Likelihood (-2LL).
For a given parameter vector b, compute -2 * Log-Likelihood (-2LL). -2LL is the standard measure that follows a Chi-Square distribution.
the parameters to fit
www.statisticalhorizons.com/wp-content/uploads/Allison.StatComp.pdf
www.stat.cmu.edu/~cshalizi/350/lectures/26/lecture-26.pdf
For a given parameter vector b, compute -2 * Log-Likelihood (-2LL) for the null model (the one that does not consider the effects of x(i)).
For a given parameter vector b, compute -2 * Log-Likelihood (-2LL) for the null model (the one that does not consider the effects of x(i)).
the parameters to fit
Predict the value of y = f(z) by evaluating the formula y = b dot zi for each row zi of matrix z.
Predict the value of y = f(z) by evaluating the formula y = b dot zi for each row zi of matrix z.
the new matrix to predict
Predict the value of y = f(z) by evaluating the formula y = b dot z, e.g., (b_0, b_1, b_2) dot (1, z_1, z_2).
Predict the value of y = f(z) by evaluating the formula y = b dot z, e.g., (b_0, b_1, b_2) dot (1, z_1, z_2).
the new vector to predict
Given a new discrete data vector z, predict the y-value of f(z).
Given a new discrete data vector z, predict the y-value of f(z).
the vector to use for prediction
Train the predictor by fitting the parameter vector (b-vector) in the exponential regression equation.
Train the predictor by fitting the parameter vector (b-vector) in the exponential regression equation.
The
ExpRegression
class supports exponential regression. In this case, 'x' is multi-dimensional [1, x_1, ... x_k]. Fit the parameter vector 'b' in the exponential regression equationlog (mu (x)) = b dot x = b_0 + b_1 * x_1 + ... b_k * x_k
www.stat.uni-muenchen.de/~leiten/Lehre/Material/GLM_0708/chapterGLM.pdf