#' Estimate the elasticity of RS on age.
#'
#' @param r A vector of RS values.
#' @param t A vector of ages at death or last census.
#' @param t0 A vector of ages at first census. Defaults to zero.
#' @return MLE of the elasticity of RS on Age, using Poisson regression.
#' @examples
#' set.seed(1)
#' Age = rpois(100, 45)
#' RS = rep(NA,100)
#' for(i in 1:100) RS[i] = rpois(1, 5*Age[i]^0.75)
#' elast(RS, Age)
elast <- function(r,t,t0=0){
f = function(x){
d = exp(x[1])*(t^exp(x[2]) - t0^exp(x[2]))
p = rep(NA,length(r))
for(i in 1:length(r))
p[i] = dpois(r[i], d[i], log = TRUE)
return(-sum(p))
}
return(exp(optim( c(0.03,0.5), f )$par[2]))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.