在好例子网,分享、交流、成长!
您当前所在位置:首页Python 开发实例Python语言基础 → arch:Python中的ARCH模型-源码

arch:Python中的ARCH模型-源码

Python语言基础

下载此实例
  • 开发语言:Python
  • 实例大小:2.64M
  • 下载次数:2
  • 浏览次数:5
  • 发布时间:2023-11-06
  • 实例类别:Python语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签: python AR py 模型 源码

实例介绍

【实例简介】arch:Python中的ARCH模型-源码
用Python编写的自回归条件异方差(ARCH)和其他用于金融计量经济学的工具(使用Cython和/或Numba来提高性能) 公制 最新发布的 持续集成 覆盖范围 代码质量 引文 文献资料 模块内容 Python 3 arch仅适用于...

【实例截图】

from clipboard

【核心代码】

.
├── arch-master
│   ├── LICENSE.md
│   ├── MANIFEST.in
│   ├── README.md
│   ├── VERSION
│   ├── appveyor.yml
│   ├── arch
│   │   ├── __init__.py
│   │   ├── _version.py
│   │   ├── bootstrap
│   │   │   ├── __init__.py
│   │   │   ├── _samplers.pyx
│   │   │   ├── _samplers_python.py
│   │   │   ├── base.py
│   │   │   └── multiple_comparison.py
│   │   ├── compat
│   │   │   ├── __init__.py
│   │   │   ├── numba.py
│   │   │   ├── pandas.py
│   │   │   └── statsmodels.py
│   │   ├── conftest.py
│   │   ├── covariance
│   │   │   ├── __init__.py
│   │   │   └── kernel.py
│   │   ├── data
│   │   │   ├── __init__.py
│   │   │   ├── binary
│   │   │   │   ├── __init__.py
│   │   │   │   └── binary.csv.gz
│   │   │   ├── core_cpi
│   │   │   │   ├── __init__.py
│   │   │   │   └── core-cpi.csv.gz
│   │   │   ├── crude
│   │   │   │   ├── __init__.py
│   │   │   │   └── crude.csv.gz
│   │   │   ├── default
│   │   │   │   ├── __init__.py
│   │   │   │   └── default.csv.gz
│   │   │   ├── frenchdata
│   │   │   │   ├── __init__.py
│   │   │   │   └── frenchdata.csv.gz
│   │   │   ├── nasdaq
│   │   │   │   ├── __init__.py
│   │   │   │   └── nasdaq.csv.gz
│   │   │   ├── sp500
│   │   │   │   ├── __init__.py
│   │   │   │   └── sp500.csv.gz
│   │   │   ├── utility.py
│   │   │   ├── vix
│   │   │   │   ├── __init__.py
│   │   │   │   └── vix.csv.gz
│   │   │   └── wti
│   │   │       ├── __init__.py
│   │   │       └── wti.csv.gz
│   │   ├── py.typed
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   ├── bootstrap
│   │   │   │   ├── __init__.py
│   │   │   │   ├── test_block_length.py
│   │   │   │   ├── test_bootstrap.py
│   │   │   │   └── test_multiple_comparison.py
│   │   │   ├── covariance
│   │   │   │   ├── __init__.py
│   │   │   │   └── test_covariance.py
│   │   │   ├── test_compat.py
│   │   │   ├── test_data.py
│   │   │   ├── test_examples.py
│   │   │   ├── test_tester.py
│   │   │   ├── unitroot
│   │   │   │   ├── __init__.py
│   │   │   │   ├── cointegration_data.py
│   │   │   │   ├── data
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── zivot-andrews.csv
│   │   │   │   ├── test_dynamic_ols.py
│   │   │   │   ├── test_engle_granger.py
│   │   │   │   ├── test_fmols_ccr.py
│   │   │   │   ├── test_phillips_ouliaris.py
│   │   │   │   └── test_unitroot.py
│   │   │   ├── univariate
│   │   │   │   ├── __init__.py
│   │   │   │   ├── test_base.py
│   │   │   │   ├── test_distribution.py
│   │   │   │   ├── test_forecast.py
│   │   │   │   ├── test_mean.py
│   │   │   │   ├── test_moment.py
│   │   │   │   ├── test_recursions.py
│   │   │   │   ├── test_rescale.py
│   │   │   │   ├── test_variance_forecasting.py
│   │   │   │   └── test_volatility.py
│   │   │   └── utility
│   │   │       ├── __init__.py
│   │   │       ├── test_array.py
│   │   │       ├── test_cov.py
│   │   │       ├── test_io.py
│   │   │       ├── test_timeseries.py
│   │   │       └── test_utility.py
│   │   ├── typing.py
│   │   ├── unitroot
│   │   │   ├── __init__.py
│   │   │   ├── _engle_granger.py
│   │   │   ├── _phillips_ouliaris.py
│   │   │   ├── _shared.py
│   │   │   ├── cointegration.py
│   │   │   ├── critical_values
│   │   │   │   ├── __init__.py
│   │   │   │   ├── dfgls.py
│   │   │   │   ├── dickey_fuller.py
│   │   │   │   ├── engle_granger.py
│   │   │   │   ├── kpss.py
│   │   │   │   ├── phillips_ouliaris.py
│   │   │   │   ├── simulation
│   │   │   │   │   ├── adf_simulation.py
│   │   │   │   │   ├── adf_z_critical_values_simulation.py
│   │   │   │   │   ├── adf_z_critical_values_simulation_joblib.py
│   │   │   │   │   ├── adf_z_critical_values_simulation_large_cluster.py
│   │   │   │   │   ├── adf_z_simlation_process.py
│   │   │   │   │   ├── dfgls_critical_values_simulation.py
│   │   │   │   │   ├── dfgls_simulation_process.py
│   │   │   │   │   ├── eg_setup.bat
│   │   │   │   │   ├── eg_setup.ps1
│   │   │   │   │   ├── eg_setup.sh
│   │   │   │   │   ├── engle_granger_simulation.py
│   │   │   │   │   ├── engle_granger_simulation_process.py
│   │   │   │   │   ├── kpss_critical_values_simulation.py
│   │   │   │   │   ├── kpss_simulation_process.py
│   │   │   │   │   ├── phillips-ouliaris-simulation-process.py
│   │   │   │   │   ├── phillips-ouliaris-simulation.py
│   │   │   │   │   ├── phillips_ouliaris.py
│   │   │   │   │   ├── requirements.txt
│   │   │   │   │   └── shared.py
│   │   │   │   └── zivot_andrews.py
│   │   │   └── unitroot.py
│   │   ├── univariate
│   │   │   ├── __init__.py
│   │   │   ├── base.py
│   │   │   ├── distribution.py
│   │   │   ├── mean.py
│   │   │   ├── recursions.pyx
│   │   │   ├── recursions_python.py
│   │   │   └── volatility.py
│   │   ├── utility
│   │   │   ├── __init__.py
│   │   │   ├── array.py
│   │   │   ├── cov.py
│   │   │   ├── exceptions.py
│   │   │   ├── io.py
│   │   │   ├── testing.py
│   │   │   └── timeseries.py
│   │   └── vendor
│   │       ├── __init__.py
│   │       └── property_cached.py
│   ├── azure-pipelines.yml
│   ├── ci
│   │   ├── azure
│   │   │   ├── azure_template_posix.yml
│   │   │   ├── azure_template_windows.yml
│   │   │   ├── install-posix.sh
│   │   │   └── update_path.sh
│   │   ├── github-actions
│   │   │   └── push-docs-gh-pages.sh
│   │   ├── install-statsmodels-master.sh
│   │   └── performance.py
│   ├── doc
│   │   ├── Makefile
│   │   ├── make.bat
│   │   ├── requirements.txt
│   │   └── source
│   │       ├── _static
│   │       │   └── images
│   │       │       ├── android-chrome-192x192.png
│   │       │       ├── android-chrome-512x512.png
│   │       │       ├── apple-touch-icon.png
│   │       │       ├── browserconfig.xml
│   │       │       ├── color-logo-256.png
│   │       │       ├── favicon-16x16.png
│   │       │       ├── favicon-32x32.png
│   │       │       ├── mstile-150x150.png
│   │       │       ├── safari-pinned-tab.svg
│   │       │       └── site.webmanifest
│   │       ├── _templates
│   │       │   ├── autosummary
│   │       │   │   ├── attribute.rst
│   │       │   │   ├── class.rst
│   │       │   │   ├── member.rst
│   │       │   │   ├── method.rst
│   │       │   │   └── minimal_module.rst
│   │       │   └── layout.html
│   │       ├── api.rst
│   │       ├── bootstrap
│   │       │   ├── background.rst
│   │       │   ├── bootstrap.rst
│   │       │   ├── bootstrap_histogram.png
│   │       │   ├── confidence-intervals.rst
│   │       │   ├── iid-bootstraps.rst
│   │       │   ├── low-level-interface.rst
│   │       │   ├── parameter-covariance-estimation.rst
│   │       │   ├── semiparametric-parametric-bootstrap.rst
│   │       │   └── timeseries-bootstraps.rst
│   │       ├── changes
│   │       │   ├── 1.0.txt
│   │       │   ├── 2.0.txt
│   │       │   ├── 3.0.txt
│   │       │   └── 4.0.txt
│   │       ├── changes.rst
│   │       ├── conf.py
│   │       ├── covariance
│   │       │   └── covariance.rst
│   │       ├── images
│   │       │   ├── bw-logo.svg
│   │       │   ├── color-logo-no-text.svg
│   │       │   ├── color-logo-unprocessed.svg
│   │       │   ├── color-logo.png
│   │       │   ├── color-logo.svg
│   │       │   ├── favicon.ico
│   │       │   ├── favicon.png
│   │       │   ├── favicon.py
│   │       │   ├── favicon.svg
│   │       │   ├── hero.png
│   │       │   ├── hero.py
│   │       │   ├── hero.svg
│   │       │   └── logo.svg
│   │       ├── index.rst
│   │       ├── multiple-comparison
│   │       │   ├── background.rst
│   │       │   ├── multiple-comparison-reference.rst
│   │       │   └── multiple-comparisons.rst
│   │       ├── names_wordlist.txt
│   │       ├── spelling_wordlist.txt
│   │       ├── unitroot
│   │       │   ├── cointegration.rst
│   │       │   ├── introduction.rst
│   │       │   ├── tests.rst
│   │       │   └── unitroot.rst
│   │       └── univariate
│   │           ├── background.rst
│   │           ├── distribution.rst
│   │           ├── forecasting.rst
│   │           ├── introduction.rst
│   │           ├── mean.rst
│   │           ├── results.rst
│   │           ├── univariate.rst
│   │           ├── utility.rst
│   │           └── volatility.rst
│   ├── examples
│   │   ├── bootstrap_examples.ipynb
│   │   ├── multiple-comparison_examples.ipynb
│   │   ├── unitroot_cointegration_examples.ipynb
│   │   ├── unitroot_examples.ipynb
│   │   ├── univariate_using_fixed_variance.ipynb
│   │   ├── univariate_volatility_forecasting.ipynb
│   │   ├── univariate_volatility_modeling.ipynb
│   │   └── univariate_volatility_scenarios.ipynb
│   ├── github_deploy_key.enc
│   ├── legacy-travis.yml
│   ├── lgtm.yml
│   ├── pyproject.toml
│   ├── requirements-dev.txt
│   ├── requirements.txt
│   ├── setup.cfg
│   ├── setup.py
│   └── versioneer.py
└── arch:Python中的ARCH模型-源码_arch-master.zip

45 directories, 219 files


标签: python AR py 模型 源码

实例下载地址

arch:Python中的ARCH模型-源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警