lambda_mle: Function to estimate lambda via MLE

View source: R/auxiliary_functions.R

lambda_mleR Documentation

Function to estimate lambda via MLE

Description

Function to estimate lambda via MLE

Usage

lambda_mle(model)

Arguments

model

A linear model L1 fitted with the rq function from the quantreg package.

Value

lambda MLE (Maximum Likelihood Estimator) estimator.

Examples

data(stackloss)
model_L1 = regL1(stack.loss ~ stack.x)
lambda_mle(model_L1)


diagL1 documentation built on May 29, 2024, 10:56 a.m.

Related to lambda_mle in diagL1...