AFR 0.2.0__tar.gz → 0.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {AFR-0.2.0 → AFR-0.2.2}/AFR/__init__.py +4 -1
- AFR-0.2.2/AFR/finratKZ.py +12 -0
- AFR-0.2.2/AFR/macroKZ.py +11 -0
- {AFR-0.2.0 → AFR-0.2.2}/AFR.egg-info/PKG-INFO +1 -1
- {AFR-0.2.0 → AFR-0.2.2}/AFR.egg-info/SOURCES.txt +2 -0
- {AFR-0.2.0 → AFR-0.2.2}/PKG-INFO +1 -1
- {AFR-0.2.0 → AFR-0.2.2}/setup.py +1 -1
- {AFR-0.2.0 → AFR-0.2.2}/AFR/adjr2_score.py +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/AFR/aic_score.py +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/AFR/bic_score.py +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/AFR/check_betas.py +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/AFR/checkdata.py +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/AFR/corsel.py +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/AFR/dec_plot.py +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/AFR/opt_size.py +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/AFR/pt_multi.py +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/AFR/pt_one.py +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/AFR/reg_test.py +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/AFR/regsel_f.py +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/AFR/sbic_score.py +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/AFR/vif_reg.py +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/AFR manual.md +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/AFR.egg-info/dependency_links.txt +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/AFR.egg-info/requires.txt +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/AFR.egg-info/top_level.txt +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/LICENSE.rtf +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/MANIFEST.in +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/example_process.ipynb +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/load/finratKZ.csv +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/load/finratKZ_dataset.html +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/load/finratKZ_dataset.rst +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/load/macroKZ.csv +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/load/macroKZ_dataset.html +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/load/macroKZ_dataset.rst +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/requirements.txt +0 -0
- {AFR-0.2.0 → AFR-0.2.2}/setup.cfg +0 -0
|
@@ -2,9 +2,10 @@
|
|
|
2
2
|
Statistical toolkit aimed to help statisticians, data analysts, data scientists, bankers and other professionals to analyze financial data.
|
|
3
3
|
|
|
4
4
|
Designed by the team of the Agency of the Republic of Kazakhstan for Regulation and Development of Financial Market (ARDFM).
|
|
5
|
+
|
|
5
6
|
"""
|
|
6
7
|
|
|
7
|
-
__version__ = "0.2.
|
|
8
|
+
__version__ = "0.2.2"
|
|
8
9
|
|
|
9
10
|
from .adjr2_score import adjr2_score
|
|
10
11
|
from .aic_score import aic_score
|
|
@@ -20,3 +21,5 @@ from .reg_test import reg_test
|
|
|
20
21
|
from .regsel_f import regsel_f
|
|
21
22
|
from .sbic_score import sbic_score
|
|
22
23
|
from .vif_reg import vif_reg
|
|
24
|
+
from .macroKZ import load_macroKZ
|
|
25
|
+
from .finratKZ import load_finratKZ
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import pandas as pd
|
|
2
|
+
import pkg_resources
|
|
3
|
+
|
|
4
|
+
def load_finratKZ():
|
|
5
|
+
"""
|
|
6
|
+
Loads finratKZ dataset. More details in the description of the dataset.
|
|
7
|
+
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
file_path = pkg_resources.resource_filename ( 'AFR', 'load/finratKZ.csv' )
|
|
11
|
+
df = pd.read_csv ( file_path )
|
|
12
|
+
return df
|
AFR-0.2.2/AFR/macroKZ.py
ADDED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: AFR
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Statistical toolkit aimed to help statisticians, data analysts, data scientists, bankers and other professionals to analyze financial data
|
|
5
5
|
Home-page: https://github.com/AFRKZ/AFR
|
|
6
6
|
Author: Timur Abilkassymov, Alua Makhmetova
|
{AFR-0.2.0 → AFR-0.2.2}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: AFR
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Statistical toolkit aimed to help statisticians, data analysts, data scientists, bankers and other professionals to analyze financial data
|
|
5
5
|
Home-page: https://github.com/AFRKZ/AFR
|
|
6
6
|
Author: Timur Abilkassymov, Alua Makhmetova
|
{AFR-0.2.0 → AFR-0.2.2}/setup.py
RENAMED
|
@@ -5,7 +5,7 @@ with open('AFR manual.md', 'r', encoding='utf-8') as fh:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name='AFR',
|
|
8
|
-
version='0.2.
|
|
8
|
+
version='0.2.2',
|
|
9
9
|
description='Statistical toolkit aimed to help statisticians, data analysts, data scientists, bankers and other professionals to analyze financial data',
|
|
10
10
|
author='Timur Abilkassymov, Alua Makhmetova',
|
|
11
11
|
author_email='alua.makhmetova@gmail.com',
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|