Skip to content

Releases: erdogant/d3graph

v2.3.9

20 Jan 21:13
Compare
Choose a tag to compare
  • added on click functionality. With the click input parameter, nodes can be highlighted.
from d3graph import d3graph
d3 = d3graph()
adjmat, df = d3.import_example('karate')
d3.graph(adjmat, color='cluster')

# Specify click event
html = d3.show(click={'fill': 'green', 'stroke': 'black', 'size': 2, 'stroke-width': 2})

# No event
html = d3.show(click=None)

v2.3.8

16 Jan 18:56
Compare
Choose a tag to compare
  • Minor bug fixes

v2.3.7

02 Dec 15:22
Compare
Choose a tag to compare
  • sklearn changed into scikit-learn in both requirements and setup file.

v2.3.6

17 Nov 10:15
Compare
Choose a tag to compare
  • Fix for hex-colors when using color='cluster'.
  • input parameter group is changed into color.

v2.3.5

04 Nov 12:41
Compare
Choose a tag to compare
  • Fix for creating colors based on clustering
  • Fix for import 'bigbang' example
  • Internal name convention: network_charge to charge and network_collision to collision

v2.3.4

13 Oct 18:56
Compare
Choose a tag to compare
  • Renamed function _showfig to showfig
  • By importing examples it will consistently output 2 parameters (adjmat and df)

v2.3.3

30 Sep 11:52
Compare
Choose a tag to compare
  • fix for ValueError from Jinja PackageLoader issue #14

v2.3.2

30 Sep 09:46
Compare
Choose a tag to compare
  • Added functionality to hide the slider in output HTML

More information can be found in the documentation.

v2.3.1

16 Sep 14:56
Compare
Choose a tag to compare
  • added scaler
  • fixes for markers
  • many fixes by @rjhear
  • name conventions (cluster_label into group)
  • docstrings updated
  • Added unit test

v2.3.0

03 Sep 12:53
Compare
Choose a tag to compare
  • New feature: Different edge markers (circle, arrow, square, stub) can now be set for marker_end.
  • Name convention: Input parameter hover is changed into tooltip
  • Catches more errors, improved logger information, code cleaning and refactoring.

Checkout the documentation pages for more information about edge markers.