Prediction interval for generalized linear model

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
5 replies · 3K views
Rizer
Messages
18
Reaction score
0
I am currently working on a prediction problem using generalized linear model, My goal is to get the prediction distribution of the response variable.

I read a thread (https://stat.ethz.ch/pipermail/r-help/2003-May/033165.html) saying the prediction uncertainty of a generalized linear model can be obtained by simulation, but I couldn't find any description of the procedure. Can anyone please help me on this?
 
Physics news on Phys.org
Hey Rizer.

What is your GLM model specifically? What distributions and link functions are you using?
 
Hi Chiro

My current model uses Gamma distribution and a reciprocal link function. I think the same simulation procedure can be applied to any distribution-link function pairs? Or are there standard analytical forms for the commonly used pairs? Thanks
 
Are you trying to estimate a set of parameters from your data or are you just trying to run a simulation of specific distributions (and possibly their parameters) to get some parameters (like mean, variance, etc)?
 
I am trying to estimate the response variables from the newly observed predictors. I have built the GLM using R and Matlab, but I have no idea how to get the prediction interval/distribution for the response variable.
 
In a GLM you estimate specific parameters: in particular, you measure the mean that is involved in the link function and you also estimate co-efficients that correspond to predictors in the linear model.

There is some theory that is used that allows one to obtain the estimate of the mean and the co-efficients using matrix algebra and iterative techniques and if you are needing to implement custom code yourself, you might want to look at either a book on GLM's or perhaps the R code that implements these techniques.

If you are estimating the response through a GLM, then you would have already decided some constraints for the response variable (in terms of its distribution and link function).