R/mixest2.R

Defines functions mixest2

Documented in mixest2

mixest2 <- function(y,x,mods=NULL,ftype=NULL,V=NULL,W=NULL,atype=NULL,Tvar=NULL)
  {
    if (is.null(atype)) { atype <- 0 }
    
    if (atype==0)
      {
        out <- .mixest2a(y=y,x=x,mods=mods,ftype=ftype,V=V,W=W,Tvar=Tvar)
      }
    else
      {
        out <- .mixest2b(y=y,x=x,mods=mods,ftype=ftype,V=V,W=W,Tvar=Tvar)
      }

    return(out)
  }
  
  

Try the dynmix package in your browser

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

dynmix documentation built on July 9, 2023, 7:22 p.m.