Skip to content

Releases: erdogant/bnlearn

0.4.10

18 Dec 14:15
Compare
Choose a tag to compare
  • Bugfix when plotting when using edge_properties.
  • added naivebayes method for creating DAG.
  • added naivebayes method for structure learning.
  • code refactoring.
  • Updating docstrings.
  • Updated unit tests

Let me know if there are accidental new bugs introduced!

0.4.9

15 Dec 21:43
Compare
Choose a tag to compare
  • edge properties can be changed for plotting purposes
    • color (per edge)
    • weight (per edge)
    • edge_alpha (overall)
    • arrowstyle (overall)
    • arrowsize (overall)

0.4.8

30 Nov 18:17
Compare
Choose a tag to compare
  • added doi

0.4.7

23 Nov 23:31
Compare
Choose a tag to compare
  • added missing package: tabulate

0.4.6

19 Nov 08:13
Compare
Choose a tag to compare
  • output of inference variables is ordered in the same manner as defined in the input.

0.4.5

22 Oct 09:08
Compare
Choose a tag to compare
  • Bug fix that fixes handling multiple categorical values in the inference.

0.4.4

22 Oct 08:38
Compare
Choose a tag to compare

0.4.3

08 Oct 08:39
Compare
Choose a tag to compare
  • Added licence to setup

0.4.2

24 Sep 08:42
Compare
Choose a tag to compare

update to the latest version with:
pip install -U bnlearn

0.4.1

09 Sep 20:25
Compare
Choose a tag to compare
  • added interactive plot with pyvis using the plot functionality with parameter bn.plot(model, interactive=True)
import bnlearn as bn
df = bn.import_example()
# Structure learning
model = bn.structure_learning.fit(df)
bn.plot(model, interactive=True)