R/trec.b1.X.R

Defines functions `trec.b1.X`

`trec.b1.X` = 
function(yi, ind.lst, X, twosex, l.tau.r, l.tau.a, 
              start, iphi=1, maxiter=100, eps=1E-3, tech.ctrl){
  triali = 0
  par0 = start
  if(twosex){
    seq = 1:(ncol(X) + 2)
  }else{
    seq = 1:(ncol(X) + 1)
  }
  repeat{
    triali = triali + 1
    tag = tryCatch({    
      res = trec.full.X(yi=yi, ind.lst=ind.lst, X=X, twosex=twosex, l.tau.r=l.tau.r, l.tau.a=l.tau.a, 
           start=par0, iphi=iphi, maxiter=maxiter, eps=eps, tech.ctrl=tech.ctrl)
      0
    }, error=function(e) {
      1
    })
    if((tag == 0) | (triali >= tech.ctrl$maxtrial))break;
    par0 = rnorm(length(start), start, 1)
  }
  if(tag == 1){
    ret = NULL
  }else{
    if(!is.null(res)){
      ret = c(res[seq], 0, res[-seq]) 
    }
  }
  return(ret)  
}

Try the rxSeq package in your browser

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

rxSeq documentation built on May 1, 2019, 11:31 p.m.