├── .Rbuildignore ├── .gitignore ├── .zenodo.json ├── DESCRIPTION ├── LICENSE ├── MFDFA.Rproj ├── MFDFA.pdf ├── NAMESPACE ├── R ├── MFDFA.R ├── MFXDFA.R ├── MFsim.R └── MMA.R ├── README.md ├── _config.yml └── man ├── MFDFA.Rd ├── MFXDFA.Rd ├── MFsim.Rd └── MMA.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlaib/MFDFA/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlaib/MFDFA/HEAD/.gitignore -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlaib/MFDFA/HEAD/.zenodo.json -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlaib/MFDFA/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlaib/MFDFA/HEAD/LICENSE -------------------------------------------------------------------------------- /MFDFA.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlaib/MFDFA/HEAD/MFDFA.Rproj -------------------------------------------------------------------------------- /MFDFA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlaib/MFDFA/HEAD/MFDFA.pdf -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlaib/MFDFA/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/MFDFA.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlaib/MFDFA/HEAD/R/MFDFA.R -------------------------------------------------------------------------------- /R/MFXDFA.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlaib/MFDFA/HEAD/R/MFXDFA.R -------------------------------------------------------------------------------- /R/MFsim.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlaib/MFDFA/HEAD/R/MFsim.R -------------------------------------------------------------------------------- /R/MMA.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlaib/MFDFA/HEAD/R/MMA.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlaib/MFDFA/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlaib/MFDFA/HEAD/_config.yml -------------------------------------------------------------------------------- /man/MFDFA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlaib/MFDFA/HEAD/man/MFDFA.Rd -------------------------------------------------------------------------------- /man/MFXDFA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlaib/MFDFA/HEAD/man/MFXDFA.Rd -------------------------------------------------------------------------------- /man/MFsim.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlaib/MFDFA/HEAD/man/MFsim.Rd -------------------------------------------------------------------------------- /man/MMA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlaib/MFDFA/HEAD/man/MMA.Rd --------------------------------------------------------------------------------