statsmodels.regression.linear_model.OLS.hessian¶ OLS.hessian(params, scale=None)[source]¶ Evaluate the Hessian function at a given point. Parameters:¶ paramsarray_likeThe parameter vector at which the Hessian is computed. scalefloat or NoneIf None, return the profile (concentrated) log likelihood (profiled over the scale parameter), else return the log-likelihood using the given scale value. Returns:¶ ndarrayThe Hessian matrix.