R/f_new_rendolatentIV.R

Defines functions new_rendo_latent_IV

#' @importFrom Formula as.Formula
new_rendo_latent_IV <- function(call, F.formula, mf, start.params, coefficients,
                               m.delta.diag, names.main.coefs,
                               res.optimx, hessian,
                               fitted.values, residuals) {

  return(.new_rendo_base(
          call = call,
          F.formula = as.Formula(F.formula), #to be sure its a Formula
          mf   = mf,
          coefficients = coefficients,
          names.main.coefs = names.main.coefs,
          residuals = residuals,
          fitted.values = fitted.values,

          subclass = c("rendo.latent.IV"),
          res.optimx = res.optimx,
          start.params = start.params,
          m.delta.diag = m.delta.diag,
          hessian = hessian))
}

Try the REndo package in your browser

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

REndo documentation built on Sept. 8, 2023, 5:53 p.m.