interv_fit: Interpolating the process, given an interval averaged series

Description Usage Arguments Details Value Examples

View source: R/mlintervals.R

Description

Maximum Likelihood interpolation of a Wiener process, given a series of observed integrals over adiacent time intervals of equal lenght. To get point estimates of the interpolating function, use method predict. The method assumes a process with homegeneous variance, but the estimated interpolating line is quite robust to heteroskedasticity, anyway, also scale parameter sigma2 is estimated as well as SEs based on it.

Usage

1
interv_fit(M, t_0 = 0, t_unit = 1, t_end = NULL)

Arguments

M

series of observed integrals

t_0

time at beginning of the first interval

t_unit

time span of each interval

t_end

time at the end of the last interval. If t_end is specified, t_unit is ignored

Details

predict

Value

A list of class interv_fit, with the following attributes:

Examples

1
2
3
4
5
6
M= c(0, 1, -1, 2, 4)
mod= interv_fit(M)
plot(mod)

mod= interv_fit(M, t_0= 5, t_unit= 2)
plot(mod)

c-foschi/mlintervals documentation built on July 1, 2020, 1:25 a.m.