python-fedci 0.1.3__tar.gz → 0.1.4__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: python-fedci
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: A small package for federated independence tests
5
5
  Author-email: Maximilian Hahn <max.hahn@gmx.de>
6
6
  License: SPDX-License-Identifier: AGPL-3.0-or-later
@@ -336,8 +336,8 @@ class LikelihoodRatioTest:
336
336
  t1_dof = self.unrestricted_test.dof
337
337
 
338
338
  self.chi2stat = 2 * (t1_llf - t0_llf)
339
- self.dofs = t1_dof - t0_dof
340
- self.p_value = scipy.stats.chi2.sf(self.chi2stat, self.dofs).item()
339
+ self.dof = t1_dof - t0_dof
340
+ self.p_value = scipy.stats.chi2.sf(self.chi2stat, self.dof).item()
341
341
 
342
342
  if get_env_debug() >= 2:
343
343
  print(
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
  [project]
6
6
  name = "python-fedci"
7
7
  authors = [{ name = "Maximilian Hahn", email = "max.hahn@gmx.de" }]
8
- version = "0.1.3"
8
+ version = "0.1.4"
9
9
  license = { file = "LICENSE" }
10
10
  description = "A small package for federated independence tests"
11
11
  readme = "README.md"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-fedci
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: A small package for federated independence tests
5
5
  Author-email: Maximilian Hahn <max.hahn@gmx.de>
6
6
  License: SPDX-License-Identifier: AGPL-3.0-or-later
File without changes
File without changes
File without changes
File without changes
File without changes