Creates a fisher_mle object representing a maximum likelihood estimate
with methods for standard inference. This class emphasizes the Fisherian
approach to likelihood-based inference.
fisher_mle(
par,
vcov = NULL,
loglik_val,
hessian = NULL,
score_val = NULL,
nobs = NULL,
converged = TRUE,
optim_result = NULL
)Numeric vector of parameter estimates (may be named)
Variance-covariance matrix of the estimates
Log-likelihood value at the MLE
Hessian matrix of the log-likelihood at the MLE
Optional score vector at the MLE (should be near zero)
Number of observations used in estimation
Logical indicating if optimization converged
Raw result from optim() for diagnostics
An object of class c("fisher_mle", "mle")