R/dof.tr.R

Defines functions dof.tr

Documented in dof.tr

dof.tr <- function(var.st){
  
   var.st <- ifelse( var.st > 5.51,   5.51, var.st ) # can't b over 250  
   var.st <- ifelse( var.st < -10, -10, var.st ) 
 
   vao <- exp(var.st) + 2
    
 list(var.st = var.st, vao = vao )  
 
}    

Try the GJRM package in your browser

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

GJRM documentation built on July 9, 2023, 7:15 p.m.