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.
- {econmethods-2.2 → econmethods-2.2.2}/PKG-INFO +1 -1
- {econmethods-2.2 → econmethods-2.2.2}/econmethods/Lib.py +1 -1
- {econmethods-2.2 → econmethods-2.2.2}/econmethods.egg-info/PKG-INFO +1 -1
- {econmethods-2.2 → econmethods-2.2.2}/setup.py +1 -1
- {econmethods-2.2 → econmethods-2.2.2}/README.md +0 -0
- {econmethods-2.2 → econmethods-2.2.2}/econmethods/CADF_Crit_Values.xlsx +0 -0
- {econmethods-2.2 → econmethods-2.2.2}/econmethods/__init__.py +0 -0
- {econmethods-2.2 → econmethods-2.2.2}/econmethods.egg-info/SOURCES.txt +0 -0
- {econmethods-2.2 → econmethods-2.2.2}/econmethods.egg-info/dependency_links.txt +0 -0
- {econmethods-2.2 → econmethods-2.2.2}/econmethods.egg-info/requires.txt +0 -0
- {econmethods-2.2 → econmethods-2.2.2}/econmethods.egg-info/top_level.txt +0 -0
- {econmethods-2.2 → econmethods-2.2.2}/setup.cfg +0 -0
|
@@ -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']
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|