econmethods 1.1__tar.gz → 1.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-1.1 → econmethods-1.2}/PKG-INFO +1 -1
- {econmethods-1.1 → econmethods-1.2}/econmethods/Lib.py +4 -0
- {econmethods-1.1 → econmethods-1.2}/econmethods.egg-info/PKG-INFO +1 -1
- {econmethods-1.1 → econmethods-1.2}/setup.py +1 -1
- {econmethods-1.1 → econmethods-1.2}/README.md +0 -0
- {econmethods-1.1 → econmethods-1.2}/econmethods/CADF_Crit_Values.xlsx +0 -0
- {econmethods-1.1 → econmethods-1.2}/econmethods/__init__.py +0 -0
- {econmethods-1.1 → econmethods-1.2}/econmethods.egg-info/SOURCES.txt +0 -0
- {econmethods-1.1 → econmethods-1.2}/econmethods.egg-info/dependency_links.txt +0 -0
- {econmethods-1.1 → econmethods-1.2}/econmethods.egg-info/requires.txt +0 -0
- {econmethods-1.1 → econmethods-1.2}/econmethods.egg-info/top_level.txt +0 -0
- {econmethods-1.1 → econmethods-1.2}/setup.cfg +0 -0
|
@@ -330,6 +330,10 @@ class FECM:
|
|
|
330
330
|
self.__stat_vars = stat_vars
|
|
331
331
|
self.__mean_names = ['target_avg']
|
|
332
332
|
self.__x_difs = include_x_diffs
|
|
333
|
+
self.__stat = []
|
|
334
|
+
for i in range(1, len(stat_vars.columns[2:]+1)):
|
|
335
|
+
self.__stat.append(f'stat{i}')
|
|
336
|
+
self.__stat_vars.columns = ['SpUnit', 'time'] + self.__stat
|
|
333
337
|
for i in range(1, self.__exog+1):
|
|
334
338
|
self.__l.append(f'x{i}')
|
|
335
339
|
self.__mean_names.append(f'x{i}_avg')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|