R/U-QE3.C.R

# Linearizable U-QE3
# Common variance for both segments

llsearch.QE3.C <- function(x, y, n, jlo, jhi,start1,start2,start3)
{
  fj <- matrix(0, n)
  fxy <- matrix(0, jhi - jlo + 1)
  
  jgrid <- expand.grid(jlo:jhi)
  k.ll <- apply(jgrid, 1, p.estFUN.C, x = x, y = y, n = n,start1=start1,start2=start2,start3=start3)
  
  fxy <- matrix(k.ll, nrow = jhi-jlo+1)
  rownames(fxy) <- jlo:jhi
  
  z <- findmax(fxy)
  jcrit <- z$imax + jlo - 1
  list(jhat = jcrit, value = max(fxy))
}

#  Function for deriving the ML estimates of the change-points problem.

p.estFUN.C <- function(j, x, y, n,start1,start2,start3){
  a <- p.est.QE3.C(x,y,n,j,start1,start2,start3)
  s2 <- a$sigma2
  return(p.ll.C(n, j, s2))
}

p.est.QE3.C <- function(x,y,n,j,start1,start2,start3){
  xa <- x[1:j]
  ya <- y[1:j]
  jp1 <- j+1
  xb <- x[jp1:n]
  yb <- y[jp1:n]
  g1 <- lm(ya ~ xa + I(xa^2))
  fun2<-function(x,b0,b1,b2){b0 + b1*exp(b2*(x-x[j]))}
  g2=nls(yb~fun2(xb,b0,b1,b2),data=data.frame(xb,yb),
         start=list(b0=start1,b1=start2,b2=start3)) # 5 0.2 -0.2
  beta <-c(g1$coef[1],g1$coef[2],g1$coef[3],summary(g2)$parameter[1],summary(g2)$parameter[2],
           summary(g2)$parameter[3])
  s2<- (sum((ya-g1$fit)^2)+sum((yb-predict(g2, list(x=xb)))^2) )/n
  list(a0=beta[1],a1=beta[2],a2=beta[3],b0=beta[4],b1=beta[5],b2=beta[6],sigma2=s2,xj=x[j])
}

#  Function to compute the log-likelihood of the change-point problem

p.ll.C <- function(n, j, s2){
  q1 <- n * log(sqrt(2 * pi))
  q2 <- 0.5 * n  * (1 + log(s2))
  - (q1 + q2)
}

findmax <-function(a)
{
  maxa<-max(a)
  imax<- which(a==max(a),arr.ind=TRUE)[1]
  jmax<-which(a==max(a),arr.ind=TRUE)[2]
  list(imax = imax, jmax = jmax, value = maxa)
}

Try the vrcp package in your browser

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

vrcp documentation built on May 2, 2019, 12:41 a.m.