metacountregressor 1.0.9__py3-none-any.whl → 1.0.11__py3-none-any.whl
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.
- metacountregressor/solution.py +2 -2
- {metacountregressor-1.0.9.dist-info → metacountregressor-1.0.11.dist-info}/METADATA +1 -1
- {metacountregressor-1.0.9.dist-info → metacountregressor-1.0.11.dist-info}/RECORD +6 -6
- {metacountregressor-1.0.9.dist-info → metacountregressor-1.0.11.dist-info}/WHEEL +1 -1
- {metacountregressor-1.0.9.dist-info → metacountregressor-1.0.11.dist-info}/licenses/LICENSE.txt +0 -0
- {metacountregressor-1.0.9.dist-info → metacountregressor-1.0.11.dist-info}/top_level.txt +0 -0
metacountregressor/solution.py
CHANGED
@@ -433,7 +433,7 @@ class ObjectiveFunction(object):
|
|
433
433
|
self.Ndraws = kwargs.get('Ndraws', 200)
|
434
434
|
self.draws1 = None
|
435
435
|
self.initial_sig = 1 # pass the test of a single model
|
436
|
-
self.pvalue_sig_value = .1
|
436
|
+
self.pvalue_sig_value = kwargs.get('pvalue_sig_value',.1)
|
437
437
|
self.observations = self._x_data.shape[0]
|
438
438
|
self.minimize_scaler = 1/self.observations # scale the minimization function to the observations
|
439
439
|
|
@@ -1194,7 +1194,7 @@ class ObjectiveFunction(object):
|
|
1194
1194
|
|
1195
1195
|
self.coeff_ = self.convert_coefficients(self.coeff_, model)
|
1196
1196
|
self.coeff_ = [self.round_with_padding(x, self.rounding_point) for x in self.coeff_]
|
1197
|
-
self.stderr = [self.round_with_padding(x,
|
1197
|
+
self.stderr = [self.round_with_padding(x, self.rounding_point) for x in self.stderr]
|
1198
1198
|
self.zvalues = [self.round_with_padding(
|
1199
1199
|
x, 2) for x in self.zvalues]
|
1200
1200
|
|
@@ -11,11 +11,11 @@ metacountregressor/pareto_file.py,sha256=whySaoPAUWYjyI8zo0hwAOa3rFk6SIUlHSpqZiL
|
|
11
11
|
metacountregressor/pareto_logger__plot.py,sha256=mEU2QN4wmsM7t39GJ_XhJ_jjsdl09JOmG0U2jICrAkI,30037
|
12
12
|
metacountregressor/setup.py,sha256=5UcQCCLR8Fm5odA3MX78WwahavxFq4mVD6oq0IuQvAY,936
|
13
13
|
metacountregressor/single_objective_finder.py,sha256=jVG7GJBqzSP4_riYr-kMMKy_LE3SlGmKMunNhHYxgRg,8011
|
14
|
-
metacountregressor/solution.py,sha256=
|
14
|
+
metacountregressor/solution.py,sha256=LMfQTNOc0XQ5folmaJLUjP_hjarBSgv5PAfGHOM2W_4,324703
|
15
15
|
metacountregressor/test_code.py,sha256=_7Emm2JbhK_NVhxoqMhshN2JeHZtihZuSDl3Jpe7Ajk,1641
|
16
16
|
metacountregressor/test_generated_paper2.py,sha256=pwOoRzl1jJIIOUAAvbkT6HmmTQ81mwpsshn9SLdKOg8,3927
|
17
|
-
metacountregressor-1.0.
|
18
|
-
metacountregressor-1.0.
|
19
|
-
metacountregressor-1.0.
|
20
|
-
metacountregressor-1.0.
|
21
|
-
metacountregressor-1.0.
|
17
|
+
metacountregressor-1.0.11.dist-info/licenses/LICENSE.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
18
|
+
metacountregressor-1.0.11.dist-info/METADATA,sha256=Q6jxjCUvqH0OdNr23I_yr3RIyYAlUXfwI7bvds3i_o0,23620
|
19
|
+
metacountregressor-1.0.11.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
|
20
|
+
metacountregressor-1.0.11.dist-info/top_level.txt,sha256=zGG7UC5WIpr76gsFUpwJ4En2aCcoNTONBaS3OewwjR0,19
|
21
|
+
metacountregressor-1.0.11.dist-info/RECORD,,
|
{metacountregressor-1.0.9.dist-info → metacountregressor-1.0.11.dist-info}/licenses/LICENSE.txt
RENAMED
File without changes
|
File without changes
|