Skip to content

Python implementation of ARFIMA process with an aim to simulate series.

License

Notifications You must be signed in to change notification settings

akononovicius/arfima

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ARFIMA

Python implementation of ARFIMA process with an aim to simulate series.

Typical usage

import arfima

series = arfima.arfima([], 0.3, [], 2**16, warmup=2**16)

The code snippet above would generate time series of ARFIMA(0, 0.3, 0) process. To simulate process with AR or MA terms simply pass the coefficients as arguments:

series = arfima.arfima([0.3, 0.2], 0.15, [0.5], 2**16, warmup=2**16)

This would simulate time series of ARFIMA(2, 0.15, 1) process with given parameters.

About

Python implementation of ARFIMA process with an aim to simulate series.

Topics

Resources

License

Stars

Watchers

Forks

Languages