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

# S3 method for gammainverse
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="gammainverse"))
#> #> Call: stats::glm(formula = object$Y ~ ., family = fam, data = dat) #> #> Coefficients: #> (Intercept) object.X #> 2.460e-02 -6.692e-05 #> #> Degrees of Freedom: 14 Total (i.e. Null); 13 Residual #> Null Deviance: 0.06654 #> Residual Deviance: 0.001559 AIC: 36.15