R/fit_oprobit.R

Defines functions fit_oprobit

Documented in fit_oprobit

## File Name: fit_oprobit.R
## File Version: 0.14

fit_oprobit <- function(x, par_init=NULL, weights=NULL)
{
    CALL <- match.call()
    res <- fit_mdmb_distribution(x=x, type="oprobit", df=Inf, par_init=par_init,
                    weights=weights)
    res$CALL <- CALL
    return(res)
}

Try the mdmb package in your browser

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

mdmb documentation built on March 7, 2023, 6:58 p.m.