A gamma regression implementation for the "gammalog" class. It uses glm with the Gamma link function set to "log"

# S3 method for gammalog
chmod(object, ...)

Arguments

object

a list of Y - outcome variable and X - design matrix of class "probit"

...

additional parameters to be passed to glm

Value

fitted model object

Examples

chmod(c_chmod(Y=women$height,X=women$weight,modclass="gammalog"))
#> #> Call: stats::glm(formula = object$Y ~ ., family = fam, data = dat) #> #> Coefficients: #> (Intercept) object.X #> 3.567952 0.004419 #> #> Degrees of Freedom: 14 Total (i.e. Null); 13 Residual #> Null Deviance: 0.06654 #> Residual Deviance: 0.001014 AIC: 29.7