Learn R Programming

mapfit (version 0.9.9)

phfit.density: PH fitting with density function

Description

Estimates PH parameters from density function.

Usage

phfit.density(
  ph,
  f,
  method = c("all", "increment"),
  lbound = 1,
  ubound = NULL,
  deformula = deformula.zeroinf,
  weight.zero = 1e-12,
  weight.reltol = 1e-08,
  start.divisions = 8,
  max.iter = 12,
  control = list(),
  verbose = list(),
  ...
)

Arguments

ph

An object of S4 class for MAP. The estimation algorithm is selected depending on thie class.

f

A faunction object for a density function.

method

The name of estimation method for hyper Erlang ('>herlang).

lbound

A value for lower limit for the number of states in hyper Erlang ('>herlang).

ubound

A value for upper limit for the number of states in hyper Erlang ('>herlang).

deformula

An object for formulas of numerical integration. It is not necessary to change it when the density function is defined on the positive domain [0,infinity).

weight.zero

A absolute value which is regarded as zero in numerical integration.

weight.reltol

A value for precision of numerical integration.

start.divisions

A value for starting value of divitions in deformula.

max.iter

A value for the maximum number of iterations to increase divisions in deformula.

control

A list of parameters for controlling the fitting process.

verbose

A list of parameters for displaying the fitting process.

...

Further arguments for methods, which are also used to send the arguments to density function.

Value

Returns a list with components, which is an object of S3 class phfit.result;

model

an object for estimated PH class ('>ph, '>cf1, '>herlang).

llf

a value of the maximum log-likelihood (a netative value of the cross entropy).

df

a value of degrees of freedom of the model.

aic

a value of Akaike information criterion (this is not meaningless in this case).

KL

a value of Kullback-Leibler divergence.

iter

the number of iterations.

convergence

a logical value for the convergence of estimation algorithm.

ctime

computation time (user time).

data

an object for MAP data class

aerror

a value of absolute error for llf at the last step of algorithm.

rerror

a value of relative error for llf at the last step of algorithm.

control

a list of the argument of control.

verbose

a list of the argument of verbose.

call

the matched call.

See Also

phfit.point, phfit.group, '>ph, '>cf1 and '>herlang

Examples

Run this code
# NOT RUN {
####################
##### truncated density
####################

## PH fitting for general PH
(result1 <- phfit.density(ph=ph(2), f=dnorm, mean=3, sd=1))

## PH fitting for CF1
(result2 <- phfit.density(ph=cf1(2), f=dnorm, mean=3, sd=1))

## PH fitting for hyper Erlang
(result3 <- phfit.density(ph=herlang(3), f=dnorm, mean=3, sd=1))

## mean
ph.mean(result1$model)
ph.mean(result2$model)
ph.mean(result3$model)

## variance
ph.var(result1$model)
ph.var(result2$model)
ph.var(result3$model)

## up to 5 moments 
ph.moment(5, result1$model)
ph.moment(5, result2$model)
ph.moment(5, result3$model)

# }

Run the code above in your browser using DataLab