econmethods 2.2__tar.gz → 2.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: econmethods
3
- Version: 2.2
3
+ Version: 2.2.2
4
4
  Summary: A python package implementing various econometrical tests and estimators
5
5
  Home-page: https://github.com/NaturionBG/econmethods
6
6
  Author: NaturionBG
@@ -388,7 +388,7 @@ class FECM:
388
388
  means = mn.groupby('time')[['target'] + self.__l].mean()
389
389
  means.columns = self.__mean_names
390
390
  means = pd.concat([means, means.shift([1])], axis=1)
391
- for var in means.columns:
391
+ for var in means.columns[:len(self.__l)+1]:
392
392
  if 'target' not in var:
393
393
  if self.__x_difs:
394
394
  means[f'{var}_diff'] = means[var] - means[f'{var}_1']
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: econmethods
3
- Version: 2.2
3
+ Version: 2.2.2
4
4
  Summary: A python package implementing various econometrical tests and estimators
5
5
  Home-page: https://github.com/NaturionBG/econmethods
6
6
  Author: NaturionBG
@@ -5,7 +5,7 @@ with open('README.md', 'r') as f:
5
5
 
6
6
  setup(
7
7
  name = 'econmethods',
8
- version = 'v2.2',
8
+ version = 'v2.2.2',
9
9
  description='A python package implementing various econometrical tests and estimators',
10
10
  packages = find_packages(),
11
11
  long_description=long_desc,
File without changes
File without changes