Last data update: 2014.03.03

R: LSSD estimation for the HKp parameters.
lssdR Documentation

LSSD estimation for the HKp parameters.

Description

The function lssd is used to estimate the σ and H parameters of the HKp, using the LSSD (Least Squares based on Standard Deviation) method as described in Koutsoyiannis (2003) and Tyralis and Koutsoyiannis (2011,Section 2.3).

Usage

lssd(data,k1,p = 2,q = 0,interval = c(0.001,0.999))

Arguments

data

time series data

k1

maximum aggregation scale

p

Parameter used to determine the weights

q

Parameter used to determine the penalty factor

interval

H interval estimation

Value

Vector of LSSD estimates of σ and H.

Author(s)

Hristos Tyralis

References

Koutsoyiannis, D. (2003) Climate change, the Hurst phenomenon, and hydrological statistics, Hydrological Sciences Journal 48(1), 3–24. http://dx.doi.org/10.1623/hysj.48.1.3.43481.

Tyralis H., Koutsoyiannis, D. (2011) Simultaneous estimation of the parameters of the Hurst-Kolmogorov stochastic process, Stochastic Environmental Research & Risk Assessment 25(1), 21–33. http://dx.doi.org/10.1007/s00477-010-0408-x.

Examples

# Estimate the parameters for the Nile time series.

lssd(data = Nile,k1 = floor(length(Nile)/10),p = 2)

Results


R version 3.3.1 (2016-06-21) -- "Bug in Your Hair"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> library(HKprocess)
> png(filename="/home/ddbj/snapshot/RGM3/R_CC/result/HKprocess/lssd.Rd_%03d_medium.png", width=480, height=480)
> ### Name: lssd
> ### Title: LSSD estimation for the HKp parameters.
> ### Aliases: lssd
> ### Keywords: ts
> 
> ### ** Examples
> 
> # Estimate the parameters for the Nile time series.
> 
> lssd(data = Nile,k1 = floor(length(Nile)/10),p = 2)
sigma_estimate     H_estimate 
   211.4441132      0.8924204 
> 
> 
> 
> 
> 
> dev.off()
null device 
          1 
>