pareto_LTMLE: MLE of the left-truncated Pareto distribution

Description Usage Arguments Value Examples

View source: R/pareto_LTMLE.R

Description

Apply MLE to the left-truncated Pareto distribution.

Usage

1
pareto_LTMLE(data, init_value, u)

Arguments

data

Empirical data that is left-truncated.

init_value

The initial value of left-truncated Pareto distributions parameter shape and scale.

u

The left truncated point.

Value

A list contains the estimation result of parameters shape and scale, standard error, and covariance matrix of estimated parameters.

Examples

1
2
3
4
data0=rpareto(30000,0.5,3)
data = data0[data0>5]
fit = pareto_LTMLE(data = data,init_value = c(0.6,2),u=5)
fit$par.ests

ckatom/ltmps documentation built on Jan. 8, 2022, 1:38 p.m.