R/fit10.R

Defines functions residuals.Fit10 deviance.Fit10 plot.Fit10 predict.Fit10 fitted.Fit10 coef.Fit10 fit10

#' @importFrom minpack.lm nls.lm
#' @importFrom MortalityLaws MortalityLaw
#' @importFrom stats optim nlminb coef
#' @importFrom graphics lines legend

fit10 <- function(x,m,w) {
if (!is.numeric(x)||!is.numeric(m)) { stop("x and m must be numeric") }
if (!is.vector(x)||!is.vector(m)) { stop("x and m must be vectors") }
if (length(x)!=length(m)) { stop("x and m must have the same length") }
if (is.unsorted(x,strictly=TRUE)) { stop("x must be in ascending order") }
if (any(x<0)) { stop("x must be non-negative") }
if (any(m<=0)) { stop("m must be positive") }
if (length(w)!=length(x)) { stop("w must have the same length as x and m") }
if (any(w<0)) { stop("w must be non-negative") }
if ((min(x)>5)||(max(x)<60)) { stop("youngest age must be 5 or lower and oldest age must be 60 or higher") }
f1 <- function(p) { sum(w[x<=9]*(log(m[x<=9])-log(p[1]^((x[x<=9]+p[2])^p[3])))^2) }
suppressWarnings(result1 <- nlminb(c(0.001,0.01,0.1),f1))
f2 <- function(p) { sum(w[x>=10&x<=29]*(log(m[x>=10&x<=29])-log(p[1]/exp(p[2]*(log(x[x>=10&x<=29])-log(p[3]))^2)))^2) }
suppressWarnings(result2 <- nlminb(c(0.001,10,20),f2))
f3 <- function(p) { sum(w[x>=30]*(log(m[x>=30])-log(p[1]*p[2]^x[x>=30]/(1+p[1]*p[2]^x[x>=30])))^2) }
suppressWarnings(result3 <- nlminb(c(0.0001,1.1),f3))
xx <- ifelse(x==0,1e-10,x)
f <- function(p) { sum(w *(log(m)-log(p[1]^((x+p[2])^p[3])+p[4]/exp(p[5]*(log(xx)-log(p[6]))^2)+p[7]*p[8]^x/(1+p[7]*p[8]^x)))^2) }
suppressWarnings(resulta <- nlminb(c(result1$par,result2$par,result3$par),f))
suppressWarnings(resultb <- optim(c(result1$par,result2$par,result3$par),f,method="Nelder-Mead"))
h <- function(p) { sqrt(w)*(log(m)-log(p[1]^((x+p[2])^p[3])+p[4]/exp(p[5]*(log(xx)-log(p[6]))^2)+p[7]*p[8]^x/(1+p[7]*p[8]^x))) }
suppressWarnings(resultc <- nls.lm(c(result1$par,result2$par,result3$par),h,lower=rep(-Inf,8),upper=rep(Inf,8)))
resultd <- MortalityLaw(x=x,mx=m,law="HP2")
error <- f(as.numeric(coef(resultd)))
oa = ifelse (is.finite(resulta$objective),resulta$objective,Inf)
ob = ifelse (is.finite(resultb$value),resultb$value,Inf)
oc = ifelse (is.finite(sum(resultc$fvec^2)),sum(resultc$fvec^2),Inf)
od = ifelse (is.finite(error),error,Inf)
if (all(!is.finite(c(oa,ob,oc,od)))) stop("all optimisation attempts are unsuccessful")
ind = which.min(c(oa,ob,oc,od))
if (ind==1) {
A <- resulta$par[1]
B <- resulta$par[2]
C <- resulta$par[3]
D <- resulta$par[4]
E <- resulta$par[5]
F <- resulta$par[6]
G <- resulta$par[7]
H <- resulta$par[8]
} else if (ind==2) {
A <- resultb$par[1]
B <- resultb$par[2]
C <- resultb$par[3]
D <- resultb$par[4]
E <- resultb$par[5]
F <- resultb$par[6]
G <- resultb$par[7]
H <- resultb$par[8]
} else if (ind==3) {
A <- resultc$par[1]
B <- resultc$par[2]
C <- resultc$par[3]
D <- resultc$par[4]
E <- resultc$par[5]
F <- resultc$par[6]
G <- resultc$par[7]
H <- resultc$par[8]
} else if (ind==4) {
A <- as.numeric(coef(resultd)[1])
B <- as.numeric(coef(resultd)[2])
C <- as.numeric(coef(resultd)[3])
D <- as.numeric(coef(resultd)[4])
E <- as.numeric(coef(resultd)[5])
F <- as.numeric(coef(resultd)[6])
G <- as.numeric(coef(resultd)[7])
H <- as.numeric(coef(resultd)[8])
}
fitted <- A^((x+B)^C)+D/exp(E*(log(xx)-log(F))^2)+G*H^x/(1+G*H^x)
structure(
list(curve="Heligman Pollard",x=x,m=m,w=w,A=A,B=B,C=C,D=D,E=E,F=F,G=G,H=H,fitted=fitted),
class="Fit10"
)
}

#' @export
coef.Fit10 <- function(object,...) {
c(A=object$A,B=object$B,C=object$C,D=object$D,E=object$E,F=object$F,G=object$G,H=object$H)
}

#' @export
fitted.Fit10 <- function(object,...) {
object$fitted
}

#' @export
predict.Fit10 <- function(object,newdata,...) {
xx <- ifelse(newdata==0,1e-10,newdata)
object$A^((newdata+object$B)^object$C)+object$D/exp(object$E*(log(xx)-log(object$F))^2)+object$G*object$H^newdata/(1+object$G*object$H^newdata)
}

#' @export
plot.Fit10 <- function(x,...) {
plot(x$x,log(x$m),xlab="age",ylab="log death rate",pch=16,cex=0.5,bty="n")
lines(x$x,log(x$fitted))
legend("bottomright",legend=c("observed","fitted"),pch=c(16,NA),lty=c(NA,1),pt.cex=0.5,cex=0.8,bty="n")
}

#' @export
deviance.Fit10 <- function(object,...) {
sum(object$w*(log(object$m)-log(object$fitted))^2)
}

#' @export
residuals.Fit10 <- function(object,...) {
log(object$m)-log(object$fitted)
}

Try the demofit package in your browser

Any scripts or data that you put into this service are public.

demofit documentation built on April 9, 2026, 5:09 p.m.