We got this error because we have some zero's in our dataset. Does it have any effect if we will change them to NA or adding one to all the values that we have. Or has it an effect on our analyis?
fit1 = glm(actspan~treatment+colony, family = Gamma(link = "log"), data = data)
Error in eval(expr, envir, enclos) : non-positive values not allowed for the 'gamma' family
Is this a good solution? Or wil it change our results
fit1 = glm(1+actspan~treatment+colony, family = Gamma(link = "log"), data = data)