econmethods 2.6__tar.gz → 2.7__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.6 → econmethods-2.7}/PKG-INFO +1 -1
- {econmethods-2.6 → econmethods-2.7}/econmethods/Lib.py +5 -0
- {econmethods-2.6 → econmethods-2.7}/econmethods.egg-info/PKG-INFO +1 -1
- {econmethods-2.6 → econmethods-2.7}/setup.py +1 -1
- {econmethods-2.6 → econmethods-2.7}/README.md +0 -0
- {econmethods-2.6 → econmethods-2.7}/econmethods/CADF_Crit_Values.xlsx +0 -0
- {econmethods-2.6 → econmethods-2.7}/econmethods/__init__.py +0 -0
- {econmethods-2.6 → econmethods-2.7}/econmethods.egg-info/SOURCES.txt +0 -0
- {econmethods-2.6 → econmethods-2.7}/econmethods.egg-info/dependency_links.txt +0 -0
- {econmethods-2.6 → econmethods-2.7}/econmethods.egg-info/requires.txt +0 -0
- {econmethods-2.6 → econmethods-2.7}/econmethods.egg-info/top_level.txt +0 -0
- {econmethods-2.6 → econmethods-2.7}/setup.cfg +0 -0
|
@@ -434,6 +434,11 @@ class FECM:
|
|
|
434
434
|
flag=False
|
|
435
435
|
if flag:
|
|
436
436
|
break
|
|
437
|
+
else:
|
|
438
|
+
if self.__lr_c:
|
|
439
|
+
res_lr = sm.OLS(lr_fe.loc[:, 'target'], sm.add_constant(lr_fe.iloc[:, 3:])).fit()
|
|
440
|
+
else:
|
|
441
|
+
res_lr = sm.OLS(lr_fe.loc[:, 'target'], lr_fe.iloc[:, 3:]).fit()
|
|
437
442
|
|
|
438
443
|
return res_lr
|
|
439
444
|
else:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|