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.
Files changed (36) hide show
  1. {AFR-0.2.0 → AFR-0.2.2}/AFR/__init__.py +4 -1
  2. AFR-0.2.2/AFR/finratKZ.py +12 -0
  3. AFR-0.2.2/AFR/macroKZ.py +11 -0
  4. {AFR-0.2.0 → AFR-0.2.2}/AFR.egg-info/PKG-INFO +1 -1
  5. {AFR-0.2.0 → AFR-0.2.2}/AFR.egg-info/SOURCES.txt +2 -0
  6. {AFR-0.2.0 → AFR-0.2.2}/PKG-INFO +1 -1
  7. {AFR-0.2.0 → AFR-0.2.2}/setup.py +1 -1
  8. {AFR-0.2.0 → AFR-0.2.2}/AFR/adjr2_score.py +0 -0
  9. {AFR-0.2.0 → AFR-0.2.2}/AFR/aic_score.py +0 -0
  10. {AFR-0.2.0 → AFR-0.2.2}/AFR/bic_score.py +0 -0
  11. {AFR-0.2.0 → AFR-0.2.2}/AFR/check_betas.py +0 -0
  12. {AFR-0.2.0 → AFR-0.2.2}/AFR/checkdata.py +0 -0
  13. {AFR-0.2.0 → AFR-0.2.2}/AFR/corsel.py +0 -0
  14. {AFR-0.2.0 → AFR-0.2.2}/AFR/dec_plot.py +0 -0
  15. {AFR-0.2.0 → AFR-0.2.2}/AFR/opt_size.py +0 -0
  16. {AFR-0.2.0 → AFR-0.2.2}/AFR/pt_multi.py +0 -0
  17. {AFR-0.2.0 → AFR-0.2.2}/AFR/pt_one.py +0 -0
  18. {AFR-0.2.0 → AFR-0.2.2}/AFR/reg_test.py +0 -0
  19. {AFR-0.2.0 → AFR-0.2.2}/AFR/regsel_f.py +0 -0
  20. {AFR-0.2.0 → AFR-0.2.2}/AFR/sbic_score.py +0 -0
  21. {AFR-0.2.0 → AFR-0.2.2}/AFR/vif_reg.py +0 -0
  22. {AFR-0.2.0 → AFR-0.2.2}/AFR manual.md +0 -0
  23. {AFR-0.2.0 → AFR-0.2.2}/AFR.egg-info/dependency_links.txt +0 -0
  24. {AFR-0.2.0 → AFR-0.2.2}/AFR.egg-info/requires.txt +0 -0
  25. {AFR-0.2.0 → AFR-0.2.2}/AFR.egg-info/top_level.txt +0 -0
  26. {AFR-0.2.0 → AFR-0.2.2}/LICENSE.rtf +0 -0
  27. {AFR-0.2.0 → AFR-0.2.2}/MANIFEST.in +0 -0
  28. {AFR-0.2.0 → AFR-0.2.2}/example_process.ipynb +0 -0
  29. {AFR-0.2.0 → AFR-0.2.2}/load/finratKZ.csv +0 -0
  30. {AFR-0.2.0 → AFR-0.2.2}/load/finratKZ_dataset.html +0 -0
  31. {AFR-0.2.0 → AFR-0.2.2}/load/finratKZ_dataset.rst +0 -0
  32. {AFR-0.2.0 → AFR-0.2.2}/load/macroKZ.csv +0 -0
  33. {AFR-0.2.0 → AFR-0.2.2}/load/macroKZ_dataset.html +0 -0
  34. {AFR-0.2.0 → AFR-0.2.2}/load/macroKZ_dataset.rst +0 -0
  35. {AFR-0.2.0 → AFR-0.2.2}/requirements.txt +0 -0
  36. {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.0"
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
@@ -0,0 +1,11 @@
1
+ import pandas as pd
2
+
3
+ def load_macroKZ():
4
+ """
5
+ Loads finratKZ dataset. More details in the description of the dataset.
6
+
7
+ """
8
+
9
+ file_path = pkg_resources.resource_filename ( 'AFR', 'load/macroKZ.csv' )
10
+ df = pd.read_csv ( file_path )
11
+ return df
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: AFR
3
- Version: 0.2.0
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
@@ -12,6 +12,8 @@ setup.py
12
12
  ./AFR/checkdata.py
13
13
  ./AFR/corsel.py
14
14
  ./AFR/dec_plot.py
15
+ ./AFR/finratKZ.py
16
+ ./AFR/macroKZ.py
15
17
  ./AFR/opt_size.py
16
18
  ./AFR/pt_multi.py
17
19
  ./AFR/pt_one.py
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: AFR
3
- Version: 0.2.0
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
@@ -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.0',
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