Can someone please suggest how to fit a distribution from exponential family with variance greater than mean to build GLM model in python.
In R, quasipoisson seemed to work well. But I couldn't find a similar distribution in python.
glm_fit1 <- glm(data = msdata,
family = quasipoisson(link = "log")...
This was the code used in R. But I want to build the model in python.