Density estimation using regression? Yes we can!
I like regression. It is one of those simple yet powerful statistical methods. You always know exactly what you are doing. This post is about density estimation, and how to get an estimate of the density using (Poisson) regression.
The “go-to” estimator for density is currently a nonparametric (or semiparametric) kernel. This is the estimator behind the density
function in R. In the past (references below) there was a line of research directed towards density estimation using regression. Part of the motivation for following this line of research was simplicity and ease of use. I guess it is for the same reason that this line of research dwindled over the years. Increased computational power allows us to do away with simplicity to a certain extent.
There is some sort of law working here whereby statistical methodology always expands to strain the current limits of computation (Bradley Efron). Maximum Likelihood Estimation techniques, which have such strong mathematical, theoretical and asymptotical foundations are now being cornered by more computationally intensive procedures.
Yet I have found this oldish method so nice that I couldn’t resist sharing (so what, you are a geek yourself for reading this).
The idea is as follows (quoted directly from the second reference below):
Estimates of g(y) are traditionally constructed in two quite different ways: by maximum likelihood fitting within some parametric family such as the normal or by nonparametric methods such as kernel density estimation. These two methods can be combined by putting an exponential family ‘through’ a nonparametric estimator.
In simpler words what we can do is use histogram as the nonparametric starting density estimation, and use the counts of each bin (the x) as regressors for the density (the y). This is why Poisson regression is appropriate, the counts are all non-negative integers.
In order to allow for a flexible shape of the density we need to expand the x (the count in each bin) using polynomial expansion. Coding helps clear confusion:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# Downloading some data library(quantmod) sym = c('SPY') end<- format(Sys.Date(),"%Y-%m-%d") start<-format(as.Date("2010-01-01"),"%Y-%m-%d") dat0 = getSymbols(sym, src="google", from=start, to=end, auto.assign = F) time <- index(dat0) # Converting to returns retd <- as.numeric(dat0[2:NROW(dat0),4])/as.numeric(dat0[1:(NROW(dat0)-1),4]) -1 # defining the number of bins in the histogram breakss <- length(retd)/7 # Influencial tuning parameter!! # Calling the histogram, note we don't need to plot it p <- hist(retd, breaks = breakss, plot= F) # getting the middle of the bin, for later x <- p$mids # The usual Kernel density for comparison kernel_density <- density(retd, n= breakss) # Defining the degree of the polynomial expansion degreee <- 6 # tuning parameter 2, not influencial, 6 is fine # Easy function to do that is with polym ply_expansion <- polym(x, degree = degreee, raw = TRUE) # Fit the poisson regression fitpois <- glm( p$counts ~ ply_expansion, family= poisson() ) # Normalize the fit fitpois$fit <- fitpois$fit/sum(fitpois$fit) # Normalize the kernel fit kernel_density_normalized <- kernel_density$y/sum(kernel_density$y) # plot it plot(kernel_density_normalized ~ I(100*kernel_density$x), ty= "l", col= "blue", lwd= 2, xlab="Returns (%, daily)", ylab="") lines(fitpois$fit ~ I(100*p$mids), col = "darkgreen", lwd =2) |
So that is how you can implement the method. You can change the degree of the polynomial so that the density becomes more, or less flexible. Next is a toy example to see how the two methods- the usual go-to kernel estimator and the regression-based estimator, compare on a known density.
I simulated a normal density and estimated it using the two methods, the one which is by Lindsey from 1974 and the usual kernel density, using the density
function. Here are the results:
Both method do quite well. However, the regression-based procedure is easier to follow in my opinion.
One comment on “Density Estimation Using Regression”