f***@gmail.com
2015-04-11 23:54:53 UTC
Hi Everyone,
I have one doubt, that maybe you can help.
In non-life pricing the frequency regression is based on Poisson regression. But because the number of claims is not the same in every tariff cells usually one uses an offset approach or a weighting procedure. Check help("Insurance", package = "MASS") in R for an example.
But why not use a Logistic Regression?
#the standard procedure is this:
data(Insurance, package="MASS")
glm(Claims ~ District + Group + Age + offset(log(Holders)), data = Insurance, family = poisson)
#but why not?
glm(Claims/Holders ~ District + Group + Age ), data = Insurance, link(logit), family(binomial))
I have one doubt, that maybe you can help.
In non-life pricing the frequency regression is based on Poisson regression. But because the number of claims is not the same in every tariff cells usually one uses an offset approach or a weighting procedure. Check help("Insurance", package = "MASS") in R for an example.
But why not use a Logistic Regression?
#the standard procedure is this:
data(Insurance, package="MASS")
glm(Claims ~ District + Group + Age + offset(log(Holders)), data = Insurance, family = poisson)
#but why not?
glm(Claims/Holders ~ District + Group + Age ), data = Insurance, link(logit), family(binomial))