diff --git a/docs/pages/doctrees/Examples.doctree b/docs/pages/doctrees/Examples.doctree index 1c42e38..a1010f6 100644 Binary files a/docs/pages/doctrees/Examples.doctree and b/docs/pages/doctrees/Examples.doctree differ diff --git a/docs/pages/doctrees/d3graph.d3graph.doctree b/docs/pages/doctrees/d3graph.d3graph.doctree index 9e16dfb..df49c8f 100644 Binary files a/docs/pages/doctrees/d3graph.d3graph.doctree and b/docs/pages/doctrees/d3graph.d3graph.doctree differ diff --git a/docs/pages/doctrees/environment.pickle b/docs/pages/doctrees/environment.pickle index fdab1c1..caa45db 100644 Binary files a/docs/pages/doctrees/environment.pickle and b/docs/pages/doctrees/environment.pickle differ diff --git a/docs/pages/html/Abstract.html b/docs/pages/html/Abstract.html index dbb9c9a..12cdf98 100644 --- a/docs/pages/html/Abstract.html +++ b/docs/pages/html/Abstract.html @@ -36,7 +36,7 @@ d3graph
- 2.4.13 + 2.4.15
@@ -85,6 +85,7 @@
  • Coding quality
  • adjmat2dict()
  • adjmat2vec()
  • +
  • create_unique_dataframe()
  • d3graph
  • data_checks()
  • edges2G()
  • diff --git a/docs/pages/html/Coding quality.html b/docs/pages/html/Coding quality.html index 931458b..9b4ba8c 100644 --- a/docs/pages/html/Coding quality.html +++ b/docs/pages/html/Coding quality.html @@ -36,7 +36,7 @@ d3graph
    - 2.4.13 + 2.4.15
    @@ -91,6 +91,7 @@
  • adjmat2dict()
  • adjmat2vec()
  • +
  • create_unique_dataframe()
  • d3graph
  • data_checks()
  • edges2G()
  • diff --git a/docs/pages/html/Core_Functionalities.html b/docs/pages/html/Core_Functionalities.html index 8579963..bee60d8 100644 --- a/docs/pages/html/Core_Functionalities.html +++ b/docs/pages/html/Core_Functionalities.html @@ -36,7 +36,7 @@ d3graph
    - 2.4.13 + 2.4.15
    @@ -92,6 +92,7 @@
  • Coding quality
  • adjmat2dict()
  • adjmat2vec()
  • +
  • create_unique_dataframe()
  • d3graph
  • data_checks()
  • edges2G()
  • diff --git a/docs/pages/html/D3.html b/docs/pages/html/D3.html index c90c2d7..7d6edac 100644 --- a/docs/pages/html/D3.html +++ b/docs/pages/html/D3.html @@ -36,7 +36,7 @@ d3graph
    - 2.4.13 + 2.4.15
    @@ -92,6 +92,7 @@
  • Coding quality
  • adjmat2dict()
  • adjmat2vec()
  • +
  • create_unique_dataframe()
  • d3graph
  • data_checks()
  • edges2G()
  • diff --git a/docs/pages/html/Data.html b/docs/pages/html/Data.html index e1fab6e..67402e0 100644 --- a/docs/pages/html/Data.html +++ b/docs/pages/html/Data.html @@ -36,7 +36,7 @@ d3graph
    - 2.4.13 + 2.4.15
    @@ -89,6 +89,7 @@
  • Coding quality
  • adjmat2dict()
  • adjmat2vec()
  • +
  • create_unique_dataframe()
  • d3graph
  • data_checks()
  • edges2G()
  • diff --git a/docs/pages/html/Documentation.html b/docs/pages/html/Documentation.html index 7439de3..341f816 100644 --- a/docs/pages/html/Documentation.html +++ b/docs/pages/html/Documentation.html @@ -36,7 +36,7 @@ d3graph
    - 2.4.13 + 2.4.15
    @@ -85,6 +85,7 @@
  • Coding quality
  • adjmat2dict()
  • adjmat2vec()
  • +
  • create_unique_dataframe()
  • d3graph
  • data_checks()
  • edges2G()
  • diff --git a/docs/pages/html/Edge properties.html b/docs/pages/html/Edge properties.html index fbdc46e..17a3414 100644 --- a/docs/pages/html/Edge properties.html +++ b/docs/pages/html/Edge properties.html @@ -36,7 +36,7 @@ d3graph
    - 2.4.13 + 2.4.15
    @@ -93,6 +93,7 @@
  • Coding quality
  • adjmat2dict()
  • adjmat2vec()
  • +
  • create_unique_dataframe()
  • d3graph
  • data_checks()
  • edges2G()
  • diff --git a/docs/pages/html/Examples.html b/docs/pages/html/Examples.html index 97d7b5f..60ec9b5 100644 --- a/docs/pages/html/Examples.html +++ b/docs/pages/html/Examples.html @@ -36,7 +36,7 @@ d3graph
    - 2.4.13 + 2.4.15
    @@ -95,6 +95,7 @@
  • Coding quality
  • adjmat2dict()
  • adjmat2vec()
  • +
  • create_unique_dataframe()
  • d3graph
  • data_checks()
  • edges2G()
  • @@ -216,7 +217,7 @@

    Karate Club networknode_size = df['degree'].values d3.graph(adjmat) -d3.set_node_properties(color=df['label'].values) +d3.set_node_properties(color=df['label'].values, label=label) d3.show() d3.set_node_properties(label=label, color=label, cmap='Set1') @@ -225,26 +226,26 @@

    Karate Club networkd3.set_node_properties(size=node_size) d3.show() -d3.set_node_properties(color=label, size=node_size) +d3.set_node_properties(color=label, size=node_size, label=label) d3.show() d3.set_edge_properties(edge_distance=100) -d3.set_node_properties(color=node_size, size=node_size) +d3.set_node_properties(color=node_size, size=node_size, label=label) d3.show() d3 = d3graph(charge=1000) d3.graph(adjmat) -d3.set_node_properties(color=node_size, size=node_size) +d3.set_node_properties(color=node_size, size=node_size, label=label) d3.show() d3 = d3graph(collision=1, charge=250) d3.graph(adjmat) -d3.set_node_properties(color=label, size=node_size, edge_size=node_size, cmap='Set1') +d3.set_node_properties(color=label, size=node_size, edge_size=node_size, cmap='Set1', label=label) d3.show() d3 = d3graph(collision=1, charge=250) d3.graph(adjmat) -d3.set_node_properties(color=label, size=node_size, edge_size=node_size, edge_color='#00FFFF', cmap='Set1') +d3.set_node_properties(color=label, size=node_size, edge_size=node_size, edge_color='#00FFFF', cmap='Set1', label=label) d3.show()

    diff --git a/docs/pages/html/Installation.html b/docs/pages/html/Installation.html index d591eb2..bfde7f5 100644 --- a/docs/pages/html/Installation.html +++ b/docs/pages/html/Installation.html @@ -36,7 +36,7 @@ d3graph
    - 2.4.13 + 2.4.15
    @@ -88,6 +88,7 @@
  • Coding quality
  • adjmat2dict()
  • adjmat2vec()
  • +
  • create_unique_dataframe()
  • d3graph
  • data_checks()
  • edges2G()
  • diff --git a/docs/pages/html/Node properties.html b/docs/pages/html/Node properties.html index 09182fd..3241132 100644 --- a/docs/pages/html/Node properties.html +++ b/docs/pages/html/Node properties.html @@ -36,7 +36,7 @@ d3graph
    - 2.4.13 + 2.4.15
    @@ -99,6 +99,7 @@
  • Coding quality
  • adjmat2dict()
  • adjmat2vec()
  • +
  • create_unique_dataframe()
  • d3graph
  • data_checks()
  • edges2G()
  • diff --git a/docs/pages/html/On Click Actions.html b/docs/pages/html/On Click Actions.html index 0e5709f..ef20e43 100644 --- a/docs/pages/html/On Click Actions.html +++ b/docs/pages/html/On Click Actions.html @@ -36,7 +36,7 @@ d3graph
    - 2.4.13 + 2.4.15
    @@ -85,6 +85,7 @@
  • Coding quality
  • adjmat2dict()
  • adjmat2vec()
  • +
  • create_unique_dataframe()
  • d3graph
  • data_checks()
  • edges2G()
  • diff --git a/docs/pages/html/_sources/Examples.rst.txt b/docs/pages/html/_sources/Examples.rst.txt index 2ba6107..8c68977 100644 --- a/docs/pages/html/_sources/Examples.rst.txt +++ b/docs/pages/html/_sources/Examples.rst.txt @@ -131,7 +131,7 @@ Karate Club network node_size = df['degree'].values d3.graph(adjmat) - d3.set_node_properties(color=df['label'].values) + d3.set_node_properties(color=df['label'].values, label=label) d3.show() d3.set_node_properties(label=label, color=label, cmap='Set1') @@ -140,26 +140,26 @@ Karate Club network d3.set_node_properties(size=node_size) d3.show() - d3.set_node_properties(color=label, size=node_size) + d3.set_node_properties(color=label, size=node_size, label=label) d3.show() d3.set_edge_properties(edge_distance=100) - d3.set_node_properties(color=node_size, size=node_size) + d3.set_node_properties(color=node_size, size=node_size, label=label) d3.show() d3 = d3graph(charge=1000) d3.graph(adjmat) - d3.set_node_properties(color=node_size, size=node_size) + d3.set_node_properties(color=node_size, size=node_size, label=label) d3.show() d3 = d3graph(collision=1, charge=250) d3.graph(adjmat) - d3.set_node_properties(color=label, size=node_size, edge_size=node_size, cmap='Set1') + d3.set_node_properties(color=label, size=node_size, edge_size=node_size, cmap='Set1', label=label) d3.show() d3 = d3graph(collision=1, charge=250) d3.graph(adjmat) - d3.set_node_properties(color=label, size=node_size, edge_size=node_size, edge_color='#00FFFF', cmap='Set1') + d3.set_node_properties(color=label, size=node_size, edge_size=node_size, edge_color='#00FFFF', cmap='Set1', label=label) d3.show() diff --git a/docs/pages/html/d3graph.d3graph.html b/docs/pages/html/d3graph.d3graph.html index efb8022..1bfd178 100644 --- a/docs/pages/html/d3graph.d3graph.html +++ b/docs/pages/html/d3graph.d3graph.html @@ -35,7 +35,7 @@ d3graph
    - 2.4.13 + 2.4.15
    @@ -84,6 +84,7 @@
  • Coding quality
  • adjmat2dict()
  • adjmat2vec()
  • +
  • create_unique_dataframe()
  • d3graph
    • d3graph.display()
    • d3graph.get_cluster_color()
    • @@ -139,7 +140,7 @@

      Make interactive network in D3 javascript.

      -d3graph.d3graph.adjmat2dict(adjmat: DataFrame, filter_weight: float = 0.0, scaler: str = 'zscore', marker_start=None, marker_end='arrow', marker_color='#808080', label=None, label_color='#808080', label_fontsize: int = 8, edge_weight: int = 1, edge_distance: int = 50, edge_style=0, minmax: list = [0.5, 15], minmax_distance: list = [50, 100]) dict
      +d3graph.d3graph.adjmat2dict(adjmat: DataFrame, filter_weight: float = 0.0, scaler: str = 'zscore', marker_start=None, marker_end='arrow', marker_color='#808080', label=None, label_color='#808080', label_fontsize: int = 8, edge_weight: int = 1, edge_distance: int = 50, edge_style=0, minmax: list = [0.5, 15], minmax_distance: list = [50, 100], return_adjmat=True) dict

      Convert adjacency matrix into vector with source and target.

      Parameters:
      @@ -229,6 +230,30 @@
  • +
    +
    +d3graph.d3graph.create_unique_dataframe(X, logger=None)
    +

    Combine source-target into adjacency matrix with updated weights.

    +
    +
    Parameters:
    +
      +
    • X (DataFrame) – Data frame containing the columns [source, target, weight].

    • +
    • logger (Object, optional) – Logger object. The default is None.

    • +
    +
    +
    Returns:
    +

    X – Unique adjacency matrix containing with index as source and columns as target labels. Weights are in the matrix.

    +
    +
    Return type:
    +

    pd.DataFrame

    +
    +
    +

    References

    +
      +
    • This function is similar to that of d3blocks.

    • +
    +
    +
    class d3graph.d3graph.d3graph(collision: float = 0.5, charge: int = 450, slider=None, support: str = 'text', verbose: int = 20)
    diff --git a/docs/pages/html/genindex.html b/docs/pages/html/genindex.html index ae8e5db..e2a22ff 100644 --- a/docs/pages/html/genindex.html +++ b/docs/pages/html/genindex.html @@ -33,7 +33,7 @@ d3graph
    - 2.4.13 + 2.4.15
    @@ -82,6 +82,7 @@
  • Coding quality
  • adjmat2dict()
  • adjmat2vec()
  • +
  • create_unique_dataframe()
  • d3graph
  • data_checks()
  • edges2G()
  • @@ -125,6 +126,7 @@

    Index

    A + | C | D | E | G @@ -152,6 +154,14 @@

    A

    +

    C

    + + +
    +

    D

      diff --git a/docs/pages/html/index.html b/docs/pages/html/index.html index b5d8c16..539d813 100644 --- a/docs/pages/html/index.html +++ b/docs/pages/html/index.html @@ -35,7 +35,7 @@ d3graph
      - 2.4.13 + 2.4.15
      @@ -84,6 +84,7 @@
    • Coding quality
    • adjmat2dict()
    • adjmat2vec()
    • +
    • create_unique_dataframe()
    • d3graph
    • data_checks()
    • edges2G()
    • @@ -197,6 +198,7 @@

      Content
    • Coding quality
    • adjmat2dict()
    • adjmat2vec()
    • +
    • create_unique_dataframe()
    • d3graph
    • data_checks()
    • edges2G()
    • diff --git a/docs/pages/html/objects.inv b/docs/pages/html/objects.inv index 3db7e23..1c12432 100644 Binary files a/docs/pages/html/objects.inv and b/docs/pages/html/objects.inv differ diff --git a/docs/pages/html/py-modindex.html b/docs/pages/html/py-modindex.html index b12eb32..1d8b0a4 100644 --- a/docs/pages/html/py-modindex.html +++ b/docs/pages/html/py-modindex.html @@ -36,7 +36,7 @@ d3graph
      - 2.4.13 + 2.4.15
      @@ -85,6 +85,7 @@
    • Coding quality
    • adjmat2dict()
    • adjmat2vec()
    • +
    • create_unique_dataframe()
    • d3graph
    • data_checks()
    • edges2G()
    • diff --git a/docs/pages/html/search.html b/docs/pages/html/search.html index 1862b3b..4fffddd 100644 --- a/docs/pages/html/search.html +++ b/docs/pages/html/search.html @@ -36,7 +36,7 @@ d3graph
      - 2.4.13 + 2.4.15
      @@ -85,6 +85,7 @@
    • Coding quality
    • adjmat2dict()
    • adjmat2vec()
    • +
    • create_unique_dataframe()
    • d3graph
    • data_checks()
    • edges2G()
    • diff --git a/docs/pages/html/searchindex.js b/docs/pages/html/searchindex.js index 458cfcc..72e5570 100644 --- a/docs/pages/html/searchindex.js +++ b/docs/pages/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["Abstract", "Coding quality", "Core_Functionalities", "D3", "Data", "Documentation", "Edge properties", "Examples", "Installation", "Node properties", "On Click Actions", "d3graph.d3graph", "index", "sponsor"], "filenames": ["Abstract.rst", "Coding quality.rst", "Core_Functionalities.rst", "D3.rst", "Data.rst", "Documentation.rst", "Edge properties.rst", "Examples.rst", "Installation.rst", "Node properties.rst", "On Click Actions.rst", "d3graph.d3graph.rst", "index.rst", "sponsor.rst"], "titles": ["Abstract", "Coding quality", "Core Functionalities", "D3 Motivation", "Input", "Sponsor", "Edge properties", "Big Bang network", "Quickstart", "Node properties", "On Click Actions", "<no title>", "D3Graph", "<no title>"], "terms": {"background": 0, "visual": [0, 2, 3], "your": [0, 2, 8, 11, 12], "data": [0, 2, 4, 10, 11], "can": [0, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 13], "kei": [0, 11], "success": 0, "project": [0, 3, 5, 13], "becaus": [0, 2, 3, 6], "reveal": 0, "hidden": [0, 2], "insight": 0, "improv": [0, 1], "understand": [0, 1, 2], "The": [0, 1, 2, 4, 5, 6, 9, 11, 12], "best": [0, 3], "wai": [0, 5, 12, 13], "convinc": 0, "peopl": 0, "i": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13], "let": [0, 4, 6, 9], "them": [0, 3, 6, 12], "see": [0, 4, 6], "interact": [0, 3, 4, 5, 11, 12], "despit": 0, "mani": [0, 1, 3, 12], "packag": [0, 1, 12], "being": 0, "avail": 0, "python": [0, 1, 3, 5, 8, 11, 12], "alwai": 0, "straightforward": 0, "make": [0, 1, 2, 6, 8, 11], "beauti": [0, 5, 11, 12], "stand": [0, 1, 5, 11, 12], "alon": [0, 5, 11, 12], "chart": [0, 3, 5, 11, 12], "also": [0, 3, 4, 5, 6, 9, 13], "work": [0, 1, 3, 9], "outsid": 0, "own": [0, 3, 11], "machin": 0, "advantag": [0, 1], "d3": [0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12], "web": 0, "standard": [0, 1], "so": 0, "you": [0, 2, 3, 5, 8, 9, 12, 13], "don": 0, "t": 0, "need": [0, 2, 9], "ani": [0, 3], "other": [0, 3, 5, 6, 13], "technologi": 0, "than": [0, 2, 4, 9, 11], "browser": [0, 11], "us": [0, 1, 2, 3, 4, 6, 8, 9, 10, 11], "importantli": 0, "help": [0, 1, 2, 4], "just": 0, "tell": 0, "reader": 0, "someth": [0, 9], "engag": 0, "ask": 0, "question": 0, "aim": 0, "creat": [0, 2, 3, 5, 6, 9, 11, 12], "simplifi": 0, "task": [0, 2], "network": [0, 2, 4, 6, 8, 9, 11, 12], "javascript": [0, 4, 11], "result": [0, 3, 4, 6], "d3graph": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "librari": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12], "built": [0, 11, 12], "forc": [0, 3, 4, 12], "direct": [0, 3, 4, 6, 11, 12], "graph": [0, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12], "input": [0, 1, 2, 3, 11, 12], "an": [0, 1, 3, 4, 8, 11, 12], "adjac": [0, 2, 3, 6, 8, 9, 11, 12], "matrix": [0, 2, 3, 6, 8, 9, 11, 12], "which": [0, 1, 3, 4, 9, 11, 12], "column": [0, 2, 3, 4, 6, 7, 8, 9, 11, 12], "index": [0, 1, 2, 3, 4, 11, 12], "ar": [0, 1, 2, 3, 4, 6, 9, 11, 12], "node": [0, 2, 3, 4, 6, 8, 10, 11, 12], "element": [0, 3, 4, 11, 12], "valu": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12], "one": [0, 3, 6, 11, 12], "larger": [0, 2, 3, 4, 11, 12], "consid": [0, 3, 12], "edg": [0, 2, 3, 4, 11, 12], "output": [0, 1, 2, 3, 11, 12], "singl": [0, 3, 4, 12], "html": [0, 2, 3, 4, 11, 12], "file": [0, 1, 2, 3, 4, 11, 12], "contain": [0, 1, 3, 4, 11, 12], "ha": [0, 1, 2, 3, 12], "sever": [0, 1, 2, 12], "featur": [0, 5, 11, 12, 13], "among": [0, 12], "slider": [0, 3, 11, 12], "break": [0, 2, 3, 12], "base": [0, 1, 2, 3, 6, 11, 12], "doubl": [0, 3, 12], "click": [0, 3, 11, 12], "highlight": [0, 3, 12], "its": [0, 3, 4, 12], "connect": [0, 2, 3, 11, 12], "more": [0, 1, 2, 3, 9, 11, 12], "option": [0, 3, 6, 11, 12], "custom": [0, 2, 3, 4, 6, 12], "properti": [0, 2, 3, 8, 10, 11, 12], "For": [0, 3], "thi": [0, 1, 2, 3, 4, 5, 11, 12, 13], "wa": [0, 3], "inspir": 0, "exampl": [0, 2, 3, 4, 6, 7, 8, 9, 10, 11], "could": 0, "therefor": [0, 3], "decid": 0, "automat": [0, 11], "d3j": [0, 5, 11, 12], "code": [0, 5, 12], "doe": 0, "requir": [0, 1, 3], "addit": 0, "instal": [0, 2], "download": [0, 11], "set": [0, 1, 2, 3, 9, 10, 11], "path": [0, 1, 11], "system": [0, 4], "environ": 0, "all": [0, 3, 4, 6, 8, 9, 11], "taken": 0, "care": 0, "off": 0, "hurai": 0, "our": [0, 3], "approach": [0, 3, 11], "follow": [0, 1, 2, 3, 4, 5, 6, 8, 11, 13], "softwar": 1, "higher": [1, 2, 11], "fewer": 1, "defect": 1, "better": [1, 6], "secur": 1, "perform": [1, 2, 3], "lead": 1, "happier": 1, "user": [1, 11], "who": 1, "effect": 1, "review": 1, "method": [1, 6], "develop": 1, "techniqu": 1, "low": [1, 9], "docstr": 1, "Such": 1, "convent": 1, "helpful": [1, 2], "cleaner": 1, "alo": 1, "trace": 1, "futur": 1, "bug": [1, 5, 12, 13], "spot": 1, "syntax": 1, "error": [1, 2, 11], "structur": [1, 2, 3, 12], "gener": [1, 11], "look": [1, 12], "like": 1, "editorconfig": 1, "gitignor": 1, "pre": 1, "commit": 1, "config": 1, "yml": 1, "prospector": 1, "changelog": 1, "rst": 1, "doc": 1, "conf": 1, "py": 1, "licens": 1, "manifest": 1, "notic": 1, "__init__": 1, "__version__": 1, "readm": 1, "md": 1, "txt": 1, "setup": 1, "cfg": 1, "test_d3graph": 1, "compliant": 1, "pep": 1, "8": [1, 6, 8, 11], "enhanc": 1, "propos": 1, "baselin": 1, "readabl": 1, "each": [1, 3, 6, 9, 11], "public": 1, "function": [1, 3, 4, 9, 11, 12], "numpi": 1, "been": 1, "measur": [1, 11], "decreas": 1, "technic": 1, "debt": 1, "version": [1, 3], "0": [1, 2, 4, 6, 8, 9, 11], "1": [1, 3, 4, 5, 6, 7, 8, 9, 11], "score": [1, 6, 11], "accord": [1, 9, 11], "analyz": 1, "good": 1, "10": [1, 2, 6, 7, 9, 10, 11], "maximum": [1, 11], "er": 1, "dept": 1, "mai": 1, "take": 1, "extra": 1, "time": 1, "easier": 1, "maintan": 1, "less": 1, "prone": 1, "essenti": 1, "garante": 1, "consist": 1, "check": [1, 11], "whether": 1, "thei": 1, "encod": 1, "properli": 1, "paramet": [1, 2, 6, 9, 11], "handl": 1, "correctli": 1, "In": [2, 3, 4], "order": 2, "manipul": [2, 12], "studi": [2, 12], "dynam": [2, 12], "complex": [2, 12], "useful": 2, "variou": [2, 3, 5, 9, 12, 13], "here": [2, 4, 5, 13], "describ": 2, "karat": [2, 6, 9, 11, 12], "first": [2, 6], "step": 2, "after": [2, 6], "pip": [2, 8, 12], "from": [2, 3, 4, 6, 7, 8, 9, 10, 11], "initi": [2, 4, 6, 7, 8, 9, 10, 11], "directli": [2, 3, 4, 8, 11], "dure": [2, 3], "collis": [2, 7, 11], "5": [2, 4, 6, 7, 8, 9, 10, 11], "respons": [2, 11], "mean": [2, 11], "prevent": [2, 11], "charg": [2, 7, 11], "250": [2, 7, 11], "length": [2, 11], "toward": [2, 11], "zero": [2, 11], "becom": [2, 5, 11, 13], "dens": [2, 11], "none": [2, 6, 10, 11], "default": [2, 3, 6, 9, 10, 11], "weight": [2, 4, 6, 8, 11], "verbos": [2, 11], "20": [2, 6, 7, 9, 11], "print": [2, 4, 6, 9, 11], "progress": [2, 11], "screen": [2, 11], "60": [2, 11], "40": [2, 9, 11], "30": [2, 11], "warn": [2, 11], "info": [2, 11], "debug": [2, 11], "A": [2, 3, 4, 8, 11], "run": 2, "load": [2, 4, 6, 7, 9, 10, 11], "adjmat": [2, 4, 6, 7, 8, 9, 10, 11], "df": [2, 7, 9, 11], "import_exampl": [2, 4, 6, 7, 9, 10, 11], "set_node_properti": [2, 6, 7, 8, 9, 10, 11], "label": [2, 7, 8, 11], "tooltip": [2, 11], "color": [2, 3, 6, 8, 10, 11], "cluster": [2, 6, 7, 10, 11], "plot": [2, 3, 6, 8, 9, 11], "go": [2, 3, 5, 13], "wild": 2, "tri": 2, "happen": 2, "At": 2, "some": [2, 3, 6], "point": 2, "stop": 2, "try": 2, "reset": 2, "silder": 2, "nervou": 2, "when": [2, 4, 9, 11], "close": 2, "togeth": [2, 3], "3": [2, 4, 6, 8, 11], "much": 2, "wider": 2, "previou": 2, "ones": 2, "certainli": 2, "have": [2, 11, 12], "expand": 2, "purpos": [2, 3], "reltiv": 2, "longer": [2, 11], "1000": [2, 7], "name": [2, 4, 8, 11], "vertic": [2, 4, 6, 11], "strenght": [2, 11], "networkx": [2, 11], "g": [2, 11], "embed": [2, 3, 4], "write": [2, 4, 11], "final": [2, 3, 4], "disk": 2, "open": [2, 5, 11, 13], "webbrosw": 2, "show_slid": [2, 11], "fals": [2, 4, 11], "collect": 3, "design": 3, "independ": 3, "build": [3, 11], "websit": 3, "provid": 3, "168": 3, "allow": [3, 12], "increment": 3, "updat": [3, 9], "support": [3, 5, 11, 12, 13], "popular": 3, "drag": 3, "brush": 3, "zoom": 3, "quantit": 3, "analysi": 3, "hierarchi": 3, "bar": 3, "line": [3, 6, 9, 11], "scatter": 3, "radial": 3, "geograph": 3, "explor": 3, "explan": 3, "cherri": 3, "pick": 3, "shown": [3, 11], "figur": [3, 11], "distinct": 3, "role": 3, "To": 3, "json": [3, 4, 11], "schemat": [3, 12], "overview": [3, 12], "simpl": [3, 4], "mechan": 3, "ad": [3, 6], "manner": [3, 4, 6], "defin": [3, 11], "size": [3, 6, 10, 11], "font": [3, 9], "space": 3, "indent": 3, "border": [3, 10], "locat": 3, "we": [3, 4, 6, 9], "overal": 3, "famili": 3, "specif": [3, 6], "chang": [3, 6, 8, 9, 10, 11], "accordingli": [3, 11], "think": 3, "easiest": 3, "No": [3, 11], "edit": 3, "newest": 3, "v7": 3, "import": [3, 4, 6, 7, 8, 9, 10, 11, 12], "local": 3, "sourc": [3, 4, 5, 8, 11], "howev": 3, "slightli": 3, "older": 3, "v3": 3, "were": 3, "readili": 3, "start": [3, 6, 11], "basic": 3, "includ": 3, "It": [3, 4, 12], "get": [3, 4, 9, 11], "right": [3, 4, 5], "shape": [3, 4, 9], "With": 3, "solv": 3, "issu": [3, 12], "csv": 3, "safe": 3, "depend": [3, 4], "amount": [3, 4], "massiv": 3, "nevertheless": 3, "integr": [3, 4], "script": [3, 4], "veri": [3, 4], "practic": [3, 4], "convert": [4, 8, 11], "By": 4, "note": [4, 11], "heavi": 4, "simplest": 4, "form": [4, 5, 13], "pd": [4, 11], "datafram": [4, 11], "target": [4, 8, 11], "between": [4, 6, 11], "repres": [4, 6], "strength": [4, 6], "4": [4, 8, 11], "true": [4, 6, 7, 11], "boolean": 4, "2": [4, 5, 6, 8, 10, 11], "": [4, 6], "bigbang": [4, 6, 7, 9, 10], "examin": [4, 6, 9], "clearli": 4, "ami": [4, 6, 9], "bernadett": [4, 6, 9], "howard": [4, 6, 9], "leonard": [4, 6, 9], "penni": [4, 6, 9], "rajesh": [4, 6, 9], "sheldon": [4, 6, 9], "specifi": [4, 9, 11], "vec2adjmat": [4, 8, 11, 12], "do": [4, 9, 11], "scratch": 4, "vector": [4, 11], "show": [4, 6, 7, 8, 9, 10, 11], "If": [4, 8, 9, 11], "directori": [4, 11], "specfi": 4, "temporari": 4, "filenam": [4, 11], "filepath": [4, 8, 11], "c": [4, 8, 11], "temp": [4, 8, 11], "d3graph_bigbang": 4, "bui": [5, 13], "me": [5, 13], "coffe": [5, 13], "donat": [5, 13], "bitcoin": [5, 13], "my": [5, 13], "profil": [5, 13], "press": [5, 13], "subscrib": [5, 13], "substack": [5, 13], "where": [5, 11, 13], "star": [5, 13], "repo": [5, 13], "page": [5, 12, 13], "digit": [5, 13], "educ": [5, 13], "product": [5, 13], "over": [5, 9, 11, 13], "contribut": [5, 13], "request": [5, 13], "idea": [5, 13], "discuss": [5, 13], "report": [5, 12, 13], "pull": [5, 13], "cheer": [5, 13], "mate": [5, 13], "d3block": [5, 11, 12], "standalon": [5, 11, 12], "found": 5, "bibtex": 5, "side": 5, "four": 6, "edge_dist": [6, 7, 11], "edge_distance_minmax": 6, "process": [6, 7, 9, 11], "edge_properti": [6, 9, 11], "weight_scal": [6, 11], "000000": [6, 9, 10, 11], "7": [6, 8], "3333": 6, "set_edge_properti": [6, 7, 11], "ff0000": [6, 9], "end": [6, 11], "arrow": [6, 11], "circl": [6, 11], "squar": [6, 11], "stub": [6, 11], "marker_end": [6, 11], "wherea": 6, "marker_start": [6, 11], "15": [6, 7, 9, 11], "808080": [6, 11], "keep": [6, 10, 12], "remov": [6, 8, 11], "individu": 6, "There": [6, 9], "two": 6, "minmax": [6, 9, 10, 11], "z": [6, 8, 11], "tend": 6, "most": 6, "case": [6, 11], "differ": 6, "scaler": [6, 9, 10, 11], "zscore": [6, 11], "per": [6, 11], "similar": 6, "intial": [6, 9], "dataset": [6, 8, 11], "test": 6, "specifc": 6, "50": [6, 11], "edge_styl": [6, 11], "marker_color": [6, 11], "label_color": [6, 11], "label_fonts": [6, 11], "7375": 6, "68": 6, "75": 6, "adjust": 6, "000fff": [6, 7], "bern": 6, "second": 6, "how": [6, 8], "straight": [6, 11], "dash": [6, 11], "number": [6, 11], "100": [6, 7, 11], "node_color": [7, 9, 10, 11], "edge_s": [7, 9, 11], "edge_color": [7, 9, 11], "00ffff": 7, "cmap": [7, 11], "set2": [7, 11], "set1": [7, 11], "node_s": 7, "degre": [7, 9, 11], "quick": 8, "learn": 8, "model": 8, "given": 8, "f": 8, "b": [8, 11], "j": 8, "m": 8, "56": 8, "64": 8, "23": 8, "9": 8, "28": 8, "45": 8, "proce": 8, "6": [8, 9], "desir": 8, "isol": 8, "conda": 8, "n": 8, "env_d3graph": 8, "activ": 8, "via": 8, "github": [8, 11, 12, 13], "git": 8, "http": [8, 11], "com": [8, 11], "erdog": [8, 11], "want": [8, 9], "list": [8, 11], "should": 8, "env": 8, "absent": 8, "possabl": 9, "underneath": 9, "demonstr": 9, "meaningful": 9, "inform": 9, "hover": [9, 11], "easili": 9, "done": 9, "nid": 9, "astyp": 9, "str": [9, 11], "ndegre": 9, "nlabel": 9, "thinner": 9, "re": 9, "whole": 9, "simpli": 9, "ajust": 9, "np": 9, "random": 9, "randint": 9, "high": 9, "fff000": [9, 11], "node_properti": [9, 11], "000080": [9, 11], "hofstadt": 9, "ffc0cb": 9, "pink": 9, "0000ff": 9, "blue": [9, 11], "red": [9, 11], "easi": 10, "dictionari": [10, 11], "fontcolor": [10, 11], "green": 10, "black": [10, 11], "fill": [10, 11], "00ff00": 10, "stroke": [10, 11], "origin": 10, "grei": 10, "increas": 10, "both": 10, "width": [10, 11], "f0f0f0": 10, "adjmat2dict": [11, 12], "filter_weight": 11, "float": 11, "int": 11, "edge_weight": 11, "minmax_dist": 11, "dict": 11, "return": 11, "minimum": 11, "scale": 11, "sklearn": 11, "shrink": 11, "distribut": 11, "marker": 11, "hex": 11, "inherit": 11, "fontsiz": 11, "thick": 11, "normal": 11, "constant": 11, "distanc": 11, "style": 11, "tupl": 11, "text": 11, "type": 11, "adjmat2vec": [11, 12], "min_weight": 11, "cloudi": 11, "sprinkler": 11, "rain": 11, "wet_grass": 11, "class": 11, "450": 11, "min": 11, "max": 11, "rang": 11, "refer": 11, "towardsdatasci": 11, "804117cb95a7": 11, "3dda98ce97d4": 11, "document": 11, "io": 11, "displai": 11, "get_cluster_color": 11, "node_nam": 11, "panda": 11, "group": 11, "opac": 11, "seen": 11, "symmetr": 11, "string": 11, "colour": 11, "commun": 11, "arrai": 11, "integ": 11, "central": 11, "transpar": 11, "inheret": 11, "99": 11, "uniqu": 11, "energi": 11, "url": 11, "sep": 11, "few": 11, "link": 11, "titan": 11, "student": 11, "fifa": 11, "cancer": 11, "waterpump": 11, "retail": 11, "mix": 11, "datazet": 11, "open_brows": 11, "sleep": 11, "bool": 11, "e": 11, "add": 11, "12": 11, "13": 11, "rect": 11, "377eb8": 11, "ffffff": 11, "same": 11, "recordingli": 11, "revers": 11, "_r": 11, "binari": 11, "binary_r": 11, "rainbow": 11, "bwr": 11, "seismic": 11, "pastel1": 11, "pair": 11, "set_path": 11, "full": 11, "pathnam": 11, "setup_slid": 11, "figsiz": 11, "1500": 11, "800": 11, "titl": 11, "showfig": 11, "overwrit": 11, "notebook": 11, "height": 11, "resolut": 11, "save": 11, "window": 11, "exist": 11, "On": [11, 12], "event": 11, "depict": 11, "multipl": 11, "factor": 11, "action": [11, 12], "ipython": 11, "write_html": 11, "json_data": 11, "data_check": [11, 12], "edges2g": [11, 12], "object": 11, "get_support": [11, 12], "json_creat": [11, 12], "dump": 11, "library_compatibility_check": [11, 12], "compat": 11, "make_graph": [11, 12], "nodes2g": [11, 12], "remove_special_char": [11, 12], "special": 11, "charact": 11, "set_logg": [11, 12], "logger": 11, "messag": 11, "aggfunc": 11, "sum": 11, "row": 11, "aggreg": 11, "relationship": 11, "creation": 12, "maintain": 12, "sponser": 12, "extens": 12, "abstract": 12, "motiv": 12, "quickstart": 12, "uninstal": 12, "core": 12, "big": 12, "bang": 12, "club": 12, "sponsor": [12, 13], "medium": [12, 13], "blog": 12, "cite": 12, "qualiti": 12, "modul": 12, "search": 12}, "objects": {"d3graph": [[11, 0, 0, "-", "d3graph"]], "d3graph.d3graph": [[11, 1, 1, "", "adjmat2dict"], [11, 1, 1, "", "adjmat2vec"], [11, 2, 1, "", "d3graph"], [11, 1, 1, "", "data_checks"], [11, 1, 1, "", "edges2G"], [11, 1, 1, "", "get_support"], [11, 1, 1, "", "json_create"], [11, 1, 1, "", "library_compatibility_checks"], [11, 1, 1, "", "make_graph"], [11, 1, 1, "", "nodes2G"], [11, 1, 1, "", "remove_special_chars"], [11, 1, 1, "", "set_logger"], [11, 1, 1, "", "vec2adjmat"]], "d3graph.d3graph.d3graph": [[11, 3, 1, "", "display"], [11, 3, 1, "", "get_cluster_color"], [11, 3, 1, "", "graph"], [11, 3, 1, "", "import_example"], [11, 3, 1, "", "open_browser"], [11, 3, 1, "", "set_edge_properties"], [11, 3, 1, "", "set_node_properties"], [11, 3, 1, "", "set_path"], [11, 3, 1, "", "setup_slider"], [11, 3, 1, "", "show"], [11, 3, 1, "", "write_html"]]}, "objtypes": {"0": "py:module", "1": "py:function", "2": "py:class", "3": "py:method"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "function", "Python function"], "2": ["py", "class", "Python class"], "3": ["py", "method", "Python method"]}, "titleterms": {"abstract": 0, "schemat": 0, "overview": 0, "code": 1, "qualiti": 1, "librari": 1, "style": [1, 3, 6], "complex": 1, "unit": 1, "test": 1, "core": 2, "function": 2, "import": 2, "init": 2, "process": 2, "show": 2, "hide": 2, "slider": 2, "d3": 3, "motiv": 3, "four": 3, "part": 3, "The": 3, "cascad": 3, "sheet": 3, "css": 3, "modul": 3, "javascript": 3, "network": [3, 7], "data": [3, 12], "input": 4, "adjac": 4, "matrix": 4, "creat": [4, 8], "output": 4, "sponsor": 5, "medium": 5, "blog": 5, "github": 5, "cite": 5, "edg": [6, 7, 9], "properti": [6, 9], "gener": 6, "marker": 6, "scale": 6, "label": [6, 9], "set": 6, "distanc": 6, "big": 7, "bang": 7, "default": 7, "node": [7, 9], "color": [7, 9], "fontcolor": [7, 9], "size": [7, 9], "colormap": 7, "direct": 7, "arrow": 7, "karat": 7, "club": 7, "quickstart": 8, "instal": [8, 12], "environ": 8, "uninstal": 8, "tooltip": 9, "cluster": 9, "fontsiz": 9, "opac": 9, "custom": 9, "one": 9, "specif": 9, "On": 10, "click": 10, "action": 10, "d3graph": 12, "content": 12, "background": 12, "method": 12, "exampl": 12, "document": 12, "indic": 12, "tabl": 12}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx": 60}, "alltitles": {"Abstract": [[0, "abstract"]], "Schematic overview": [[0, "schematic-overview"]], "Coding quality": [[1, "coding-quality"]], "library": [[1, "library"]], "Style": [[1, "style"]], "Complexity": [[1, "complexity"]], "Unit tests": [[1, "unit-tests"]], "Core Functionalities": [[2, "core-functionalities"]], "Import": [[2, "import"]], "Initalization": [[2, "initalization"]], "Processing": [[2, "processing"]], "Show": [[2, "show"]], "Hide Slider": [[2, "hide-slider"]], "D3 Motivation": [[3, "d3-motivation"]], "Four parts": [[3, "four-parts"]], "The Cascading Style Sheets (CSS)": [[3, "the-cascading-style-sheets-css"]], "D3 module": [[3, "d3-module"]], "Javascript for the network": [[3, "javascript-for-the-network"]], "Data": [[3, "data"], [12, null]], "Input": [[4, "input"]], "Adjacency matrix": [[4, "adjacency-matrix"]], "Create adjacency matrix": [[4, "create-adjacency-matrix"]], "Output": [[4, "output"]], "Sponsor": [[5, "sponsor"]], "Medium Blog": [[5, "medium-blog"]], "Github": [[5, "github"]], "Citing": [[5, "citing"]], "Edge properties": [[6, "edge-properties"]], "General": [[6, "general"]], "Markers": [[6, "markers"]], "Scaling edges": [[6, "scaling-edges"]], "Edge Labels": [[6, "edge-labels"]], "Edge style": [[6, "edge-style"]], "Set distance": [[6, "set-distance"]], "Big Bang network": [[7, "big-bang-network"]], "Default": [[7, "default"]], "Node colors": [[7, "node-colors"]], "Node fontcolors": [[7, "node-fontcolors"]], "Node sizes": [[7, "node-sizes"]], "Edge sizes": [[7, "edge-sizes"]], "Edge colors": [[7, "edge-colors"]], "Colormap": [[7, "colormap"]], "Directed arrows": [[7, "directed-arrows"]], "Karate Club network": [[7, "karate-club-network"]], "Quickstart": [[8, "quickstart"]], "Installation": [[8, "installation"], [12, null]], "Create environment": [[8, "create-environment"]], "Uninstalling": [[8, "uninstalling"]], "Node properties": [[9, "node-properties"]], "Node label": [[9, "node-label"]], "Tooltips": [[9, "tooltips"]], "Node color": [[9, "node-color"]], "Node color on clustering": [[9, "node-color-on-clustering"]], "Node fontcolor": [[9, "node-fontcolor"]], "Node fontsize": [[9, "node-fontsize"]], "Node edge color on clustering": [[9, "node-edge-color-on-clustering"]], "Node size": [[9, "node-size"]], "Node opacity": [[9, "node-opacity"]], "Node edge size": [[9, "node-edge-size"]], "Node edge color": [[9, "node-edge-color"]], "Customize the properties of one specific node": [[9, "customize-the-properties-of-one-specific-node"]], "On Click Actions": [[10, "on-click-actions"]], "D3Graph": [[12, "d3graph"]], "Content": [[12, "content"]], "Background": [[12, null]], "Methods": [[12, null]], "Examples": [[12, null]], "Documentation": [[12, null]], "Indices and tables": [[12, "indices-and-tables"]]}, "indexentries": {"adjmat2dict() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.adjmat2dict"]], "adjmat2vec() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.adjmat2vec"]], "d3graph (class in d3graph.d3graph)": [[11, "d3graph.d3graph.d3graph"]], "d3graph.d3graph": [[11, "module-d3graph.d3graph"]], "data_checks() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.data_checks"]], "display() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.display"]], "edges2g() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.edges2G"]], "get_cluster_color() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.get_cluster_color"]], "get_support() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.get_support"]], "graph() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.graph"]], "import_example() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.import_example"]], "json_create() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.json_create"]], "library_compatibility_checks() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.library_compatibility_checks"]], "make_graph() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.make_graph"]], "module": [[11, "module-d3graph.d3graph"]], "nodes2g() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.nodes2G"]], "open_browser() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.open_browser"]], "remove_special_chars() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.remove_special_chars"]], "set_edge_properties() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.set_edge_properties"]], "set_logger() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.set_logger"]], "set_node_properties() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.set_node_properties"]], "set_path() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.set_path"]], "setup_slider() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.setup_slider"]], "show() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.show"]], "vec2adjmat() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.vec2adjmat"]], "write_html() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.write_html"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["Abstract", "Coding quality", "Core_Functionalities", "D3", "Data", "Documentation", "Edge properties", "Examples", "Installation", "Node properties", "On Click Actions", "d3graph.d3graph", "index", "sponsor"], "filenames": ["Abstract.rst", "Coding quality.rst", "Core_Functionalities.rst", "D3.rst", "Data.rst", "Documentation.rst", "Edge properties.rst", "Examples.rst", "Installation.rst", "Node properties.rst", "On Click Actions.rst", "d3graph.d3graph.rst", "index.rst", "sponsor.rst"], "titles": ["Abstract", "Coding quality", "Core Functionalities", "D3 Motivation", "Input", "Sponsor", "Edge properties", "Big Bang network", "Quickstart", "Node properties", "On Click Actions", "<no title>", "D3Graph", "<no title>"], "terms": {"background": 0, "visual": [0, 2, 3], "your": [0, 2, 8, 11, 12], "data": [0, 2, 4, 10, 11], "can": [0, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 13], "kei": [0, 11], "success": 0, "project": [0, 3, 5, 13], "becaus": [0, 2, 3, 6], "reveal": 0, "hidden": [0, 2], "insight": 0, "improv": [0, 1], "understand": [0, 1, 2], "The": [0, 1, 2, 4, 5, 6, 9, 11, 12], "best": [0, 3], "wai": [0, 5, 12, 13], "convinc": 0, "peopl": 0, "i": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13], "let": [0, 4, 6, 9], "them": [0, 3, 6, 12], "see": [0, 4, 6], "interact": [0, 3, 4, 5, 11, 12], "despit": 0, "mani": [0, 1, 3, 12], "packag": [0, 1, 12], "being": 0, "avail": 0, "python": [0, 1, 3, 5, 8, 11, 12], "alwai": 0, "straightforward": 0, "make": [0, 1, 2, 6, 8, 11], "beauti": [0, 5, 11, 12], "stand": [0, 1, 5, 11, 12], "alon": [0, 5, 11, 12], "chart": [0, 3, 5, 11, 12], "also": [0, 3, 4, 5, 6, 9, 13], "work": [0, 1, 3, 9], "outsid": 0, "own": [0, 3, 11], "machin": 0, "advantag": [0, 1], "d3": [0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12], "web": 0, "standard": [0, 1], "so": 0, "you": [0, 2, 3, 5, 8, 9, 12, 13], "don": 0, "t": 0, "need": [0, 2, 9], "ani": [0, 3], "other": [0, 3, 5, 6, 13], "technologi": 0, "than": [0, 2, 4, 9, 11], "browser": [0, 11], "us": [0, 1, 2, 3, 4, 6, 8, 9, 10, 11], "importantli": 0, "help": [0, 1, 2, 4], "just": 0, "tell": 0, "reader": 0, "someth": [0, 9], "engag": 0, "ask": 0, "question": 0, "aim": 0, "creat": [0, 2, 3, 5, 6, 9, 11, 12], "simplifi": 0, "task": [0, 2], "network": [0, 2, 4, 6, 8, 9, 11, 12], "javascript": [0, 4, 11], "result": [0, 3, 4, 6], "d3graph": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "librari": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12], "built": [0, 11, 12], "forc": [0, 3, 4, 12], "direct": [0, 3, 4, 6, 11, 12], "graph": [0, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12], "input": [0, 1, 2, 3, 11, 12], "an": [0, 1, 3, 4, 8, 11, 12], "adjac": [0, 2, 3, 6, 8, 9, 11, 12], "matrix": [0, 2, 3, 6, 8, 9, 11, 12], "which": [0, 1, 3, 4, 9, 11, 12], "column": [0, 2, 3, 4, 6, 7, 8, 9, 11, 12], "index": [0, 1, 2, 3, 4, 11, 12], "ar": [0, 1, 2, 3, 4, 6, 9, 11, 12], "node": [0, 2, 3, 4, 6, 8, 10, 11, 12], "element": [0, 3, 4, 11, 12], "valu": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12], "one": [0, 3, 6, 11, 12], "larger": [0, 2, 3, 4, 11, 12], "consid": [0, 3, 12], "edg": [0, 2, 3, 4, 11, 12], "output": [0, 1, 2, 3, 11, 12], "singl": [0, 3, 4, 12], "html": [0, 2, 3, 4, 11, 12], "file": [0, 1, 2, 3, 4, 11, 12], "contain": [0, 1, 3, 4, 11, 12], "ha": [0, 1, 2, 3, 12], "sever": [0, 1, 2, 12], "featur": [0, 5, 11, 12, 13], "among": [0, 12], "slider": [0, 3, 11, 12], "break": [0, 2, 3, 12], "base": [0, 1, 2, 3, 6, 11, 12], "doubl": [0, 3, 12], "click": [0, 3, 11, 12], "highlight": [0, 3, 12], "its": [0, 3, 4, 12], "connect": [0, 2, 3, 11, 12], "more": [0, 1, 2, 3, 9, 11, 12], "option": [0, 3, 6, 11, 12], "custom": [0, 2, 3, 4, 6, 12], "properti": [0, 2, 3, 8, 10, 11, 12], "For": [0, 3], "thi": [0, 1, 2, 3, 4, 5, 11, 12, 13], "wa": [0, 3], "inspir": 0, "exampl": [0, 2, 3, 4, 6, 7, 8, 9, 10, 11], "could": 0, "therefor": [0, 3], "decid": 0, "automat": [0, 11], "d3j": [0, 5, 11, 12], "code": [0, 5, 12], "doe": 0, "requir": [0, 1, 3], "addit": 0, "instal": [0, 2], "download": [0, 11], "set": [0, 1, 2, 3, 9, 10, 11], "path": [0, 1, 11], "system": [0, 4], "environ": 0, "all": [0, 3, 4, 6, 8, 9, 11], "taken": 0, "care": 0, "off": 0, "hurai": 0, "our": [0, 3], "approach": [0, 3, 11], "follow": [0, 1, 2, 3, 4, 5, 6, 8, 11, 13], "softwar": 1, "higher": [1, 2, 11], "fewer": 1, "defect": 1, "better": [1, 6], "secur": 1, "perform": [1, 2, 3], "lead": 1, "happier": 1, "user": [1, 11], "who": 1, "effect": 1, "review": 1, "method": [1, 6], "develop": 1, "techniqu": 1, "low": [1, 9], "docstr": 1, "Such": 1, "convent": 1, "helpful": [1, 2], "cleaner": 1, "alo": 1, "trace": 1, "futur": 1, "bug": [1, 5, 12, 13], "spot": 1, "syntax": 1, "error": [1, 2, 11], "structur": [1, 2, 3, 12], "gener": [1, 11], "look": [1, 12], "like": 1, "editorconfig": 1, "gitignor": 1, "pre": 1, "commit": 1, "config": 1, "yml": 1, "prospector": 1, "changelog": 1, "rst": 1, "doc": 1, "conf": 1, "py": 1, "licens": 1, "manifest": 1, "notic": 1, "__init__": 1, "__version__": 1, "readm": 1, "md": 1, "txt": 1, "setup": 1, "cfg": 1, "test_d3graph": 1, "compliant": 1, "pep": 1, "8": [1, 6, 8, 11], "enhanc": 1, "propos": 1, "baselin": 1, "readabl": 1, "each": [1, 3, 6, 9, 11], "public": 1, "function": [1, 3, 4, 9, 11, 12], "numpi": 1, "been": 1, "measur": [1, 11], "decreas": 1, "technic": 1, "debt": 1, "version": [1, 3], "0": [1, 2, 4, 6, 8, 9, 11], "1": [1, 3, 4, 5, 6, 7, 8, 9, 11], "score": [1, 6, 11], "accord": [1, 9, 11], "analyz": 1, "good": 1, "10": [1, 2, 6, 7, 9, 10, 11], "maximum": [1, 11], "er": 1, "dept": 1, "mai": 1, "take": 1, "extra": 1, "time": 1, "easier": 1, "maintan": 1, "less": 1, "prone": 1, "essenti": 1, "garante": 1, "consist": 1, "check": [1, 11], "whether": 1, "thei": 1, "encod": 1, "properli": 1, "paramet": [1, 2, 6, 9, 11], "handl": 1, "correctli": 1, "In": [2, 3, 4], "order": 2, "manipul": [2, 12], "studi": [2, 12], "dynam": [2, 12], "complex": [2, 12], "useful": 2, "variou": [2, 3, 5, 9, 12, 13], "here": [2, 4, 5, 13], "describ": 2, "karat": [2, 6, 9, 11, 12], "first": [2, 6], "step": 2, "after": [2, 6], "pip": [2, 8, 12], "from": [2, 3, 4, 6, 7, 8, 9, 10, 11], "initi": [2, 4, 6, 7, 8, 9, 10, 11], "directli": [2, 3, 4, 8, 11], "dure": [2, 3], "collis": [2, 7, 11], "5": [2, 4, 6, 7, 8, 9, 10, 11], "respons": [2, 11], "mean": [2, 11], "prevent": [2, 11], "charg": [2, 7, 11], "250": [2, 7, 11], "length": [2, 11], "toward": [2, 11], "zero": [2, 11], "becom": [2, 5, 11, 13], "dens": [2, 11], "none": [2, 6, 10, 11], "default": [2, 3, 6, 9, 10, 11], "weight": [2, 4, 6, 8, 11], "verbos": [2, 11], "20": [2, 6, 7, 9, 11], "print": [2, 4, 6, 9, 11], "progress": [2, 11], "screen": [2, 11], "60": [2, 11], "40": [2, 9, 11], "30": [2, 11], "warn": [2, 11], "info": [2, 11], "debug": [2, 11], "A": [2, 3, 4, 8, 11], "run": 2, "load": [2, 4, 6, 7, 9, 10, 11], "adjmat": [2, 4, 6, 7, 8, 9, 10, 11], "df": [2, 7, 9, 11], "import_exampl": [2, 4, 6, 7, 9, 10, 11], "set_node_properti": [2, 6, 7, 8, 9, 10, 11], "label": [2, 7, 8, 11], "tooltip": [2, 11], "color": [2, 3, 6, 8, 10, 11], "cluster": [2, 6, 7, 10, 11], "plot": [2, 3, 6, 8, 9, 11], "go": [2, 3, 5, 13], "wild": 2, "tri": 2, "happen": 2, "At": 2, "some": [2, 3, 6], "point": 2, "stop": 2, "try": 2, "reset": 2, "silder": 2, "nervou": 2, "when": [2, 4, 9, 11], "close": 2, "togeth": [2, 3], "3": [2, 4, 6, 8, 11], "much": 2, "wider": 2, "previou": 2, "ones": 2, "certainli": 2, "have": [2, 11, 12], "expand": 2, "purpos": [2, 3], "reltiv": 2, "longer": [2, 11], "1000": [2, 7], "name": [2, 4, 8, 11], "vertic": [2, 4, 6, 11], "strenght": [2, 11], "networkx": [2, 11], "g": [2, 11], "embed": [2, 3, 4], "write": [2, 4, 11], "final": [2, 3, 4], "disk": 2, "open": [2, 5, 11, 13], "webbrosw": 2, "show_slid": [2, 11], "fals": [2, 4, 11], "collect": 3, "design": 3, "independ": 3, "build": [3, 11], "websit": 3, "provid": 3, "168": 3, "allow": [3, 12], "increment": 3, "updat": [3, 9, 11], "support": [3, 5, 11, 12, 13], "popular": 3, "drag": 3, "brush": 3, "zoom": 3, "quantit": 3, "analysi": 3, "hierarchi": 3, "bar": 3, "line": [3, 6, 9, 11], "scatter": 3, "radial": 3, "geograph": 3, "explor": 3, "explan": 3, "cherri": 3, "pick": 3, "shown": [3, 11], "figur": [3, 11], "distinct": 3, "role": 3, "To": 3, "json": [3, 4, 11], "schemat": [3, 12], "overview": [3, 12], "simpl": [3, 4], "mechan": 3, "ad": [3, 6], "manner": [3, 4, 6], "defin": [3, 11], "size": [3, 6, 10, 11], "font": [3, 9], "space": 3, "indent": 3, "border": [3, 10], "locat": 3, "we": [3, 4, 6, 9], "overal": 3, "famili": 3, "specif": [3, 6], "chang": [3, 6, 8, 9, 10, 11], "accordingli": [3, 11], "think": 3, "easiest": 3, "No": [3, 11], "edit": 3, "newest": 3, "v7": 3, "import": [3, 4, 6, 7, 8, 9, 10, 11, 12], "local": 3, "sourc": [3, 4, 5, 8, 11], "howev": 3, "slightli": 3, "older": 3, "v3": 3, "were": 3, "readili": 3, "start": [3, 6, 11], "basic": 3, "includ": 3, "It": [3, 4, 12], "get": [3, 4, 9, 11], "right": [3, 4, 5], "shape": [3, 4, 9], "With": 3, "solv": 3, "issu": [3, 12], "csv": 3, "safe": 3, "depend": [3, 4], "amount": [3, 4], "massiv": 3, "nevertheless": 3, "integr": [3, 4], "script": [3, 4], "veri": [3, 4], "practic": [3, 4], "convert": [4, 8, 11], "By": 4, "note": [4, 11], "heavi": 4, "simplest": 4, "form": [4, 5, 13], "pd": [4, 11], "datafram": [4, 11], "target": [4, 8, 11], "between": [4, 6, 11], "repres": [4, 6], "strength": [4, 6], "4": [4, 8, 11], "true": [4, 6, 7, 11], "boolean": 4, "2": [4, 5, 6, 8, 10, 11], "": [4, 6], "bigbang": [4, 6, 7, 9, 10], "examin": [4, 6, 9], "clearli": 4, "ami": [4, 6, 9], "bernadett": [4, 6, 9], "howard": [4, 6, 9], "leonard": [4, 6, 9], "penni": [4, 6, 9], "rajesh": [4, 6, 9], "sheldon": [4, 6, 9], "specifi": [4, 9, 11], "vec2adjmat": [4, 8, 11, 12], "do": [4, 9, 11], "scratch": 4, "vector": [4, 11], "show": [4, 6, 7, 8, 9, 10, 11], "If": [4, 8, 9, 11], "directori": [4, 11], "specfi": 4, "temporari": 4, "filenam": [4, 11], "filepath": [4, 8, 11], "c": [4, 8, 11], "temp": [4, 8, 11], "d3graph_bigbang": 4, "bui": [5, 13], "me": [5, 13], "coffe": [5, 13], "donat": [5, 13], "bitcoin": [5, 13], "my": [5, 13], "profil": [5, 13], "press": [5, 13], "subscrib": [5, 13], "substack": [5, 13], "where": [5, 11, 13], "star": [5, 13], "repo": [5, 13], "page": [5, 12, 13], "digit": [5, 13], "educ": [5, 13], "product": [5, 13], "over": [5, 9, 11, 13], "contribut": [5, 13], "request": [5, 13], "idea": [5, 13], "discuss": [5, 13], "report": [5, 12, 13], "pull": [5, 13], "cheer": [5, 13], "mate": [5, 13], "d3block": [5, 11, 12], "standalon": [5, 11, 12], "found": 5, "bibtex": 5, "side": 5, "four": 6, "edge_dist": [6, 7, 11], "edge_distance_minmax": 6, "process": [6, 7, 9, 11], "edge_properti": [6, 9, 11], "weight_scal": [6, 11], "000000": [6, 9, 10, 11], "7": [6, 8], "3333": 6, "set_edge_properti": [6, 7, 11], "ff0000": [6, 9], "end": [6, 11], "arrow": [6, 11], "circl": [6, 11], "squar": [6, 11], "stub": [6, 11], "marker_end": [6, 11], "wherea": 6, "marker_start": [6, 11], "15": [6, 7, 9, 11], "808080": [6, 11], "keep": [6, 10, 12], "remov": [6, 8, 11], "individu": 6, "There": [6, 9], "two": 6, "minmax": [6, 9, 10, 11], "z": [6, 8, 11], "tend": 6, "most": 6, "case": [6, 11], "differ": 6, "scaler": [6, 9, 10, 11], "zscore": [6, 11], "per": [6, 11], "similar": [6, 11], "intial": [6, 9], "dataset": [6, 8, 11], "test": 6, "specifc": 6, "50": [6, 11], "edge_styl": [6, 11], "marker_color": [6, 11], "label_color": [6, 11], "label_fonts": [6, 11], "7375": 6, "68": 6, "75": 6, "adjust": 6, "000fff": [6, 7], "bern": 6, "second": 6, "how": [6, 8], "straight": [6, 11], "dash": [6, 11], "number": [6, 11], "100": [6, 7, 11], "node_color": [7, 9, 10, 11], "edge_s": [7, 9, 11], "edge_color": [7, 9, 11], "00ffff": 7, "cmap": [7, 11], "set2": [7, 11], "set1": [7, 11], "node_s": 7, "degre": [7, 9, 11], "quick": 8, "learn": 8, "model": 8, "given": 8, "f": 8, "b": [8, 11], "j": 8, "m": 8, "56": 8, "64": 8, "23": 8, "9": 8, "28": 8, "45": 8, "proce": 8, "6": [8, 9], "desir": 8, "isol": 8, "conda": 8, "n": 8, "env_d3graph": 8, "activ": 8, "via": 8, "github": [8, 11, 12, 13], "git": 8, "http": [8, 11], "com": [8, 11], "erdog": [8, 11], "want": [8, 9], "list": [8, 11], "should": 8, "env": 8, "absent": 8, "possabl": 9, "underneath": 9, "demonstr": 9, "meaningful": 9, "inform": 9, "hover": [9, 11], "easili": 9, "done": 9, "nid": 9, "astyp": 9, "str": [9, 11], "ndegre": 9, "nlabel": 9, "thinner": 9, "re": 9, "whole": 9, "simpli": 9, "ajust": 9, "np": 9, "random": 9, "randint": 9, "high": 9, "fff000": [9, 11], "node_properti": [9, 11], "000080": [9, 11], "hofstadt": 9, "ffc0cb": 9, "pink": 9, "0000ff": 9, "blue": [9, 11], "red": [9, 11], "easi": 10, "dictionari": [10, 11], "fontcolor": [10, 11], "green": 10, "black": [10, 11], "fill": [10, 11], "00ff00": 10, "stroke": [10, 11], "origin": 10, "grei": 10, "increas": 10, "both": 10, "width": [10, 11], "f0f0f0": 10, "adjmat2dict": [11, 12], "filter_weight": 11, "float": 11, "int": 11, "edge_weight": 11, "minmax_dist": 11, "return_adjmat": 11, "dict": 11, "return": 11, "minimum": 11, "scale": 11, "sklearn": 11, "shrink": 11, "distribut": 11, "marker": 11, "hex": 11, "inherit": 11, "fontsiz": 11, "thick": 11, "normal": 11, "constant": 11, "distanc": 11, "style": 11, "tupl": 11, "text": 11, "type": 11, "adjmat2vec": [11, 12], "min_weight": 11, "cloudi": 11, "sprinkler": 11, "rain": 11, "wet_grass": 11, "create_unique_datafram": [11, 12], "x": 11, "logger": 11, "combin": 11, "frame": 11, "object": 11, "uniqu": 11, "refer": 11, "class": 11, "450": 11, "min": 11, "max": 11, "rang": 11, "towardsdatasci": 11, "804117cb95a7": 11, "3dda98ce97d4": 11, "document": 11, "io": 11, "displai": 11, "get_cluster_color": 11, "node_nam": 11, "panda": 11, "group": 11, "opac": 11, "seen": 11, "symmetr": 11, "string": 11, "colour": 11, "commun": 11, "arrai": 11, "integ": 11, "central": 11, "transpar": 11, "inheret": 11, "99": 11, "energi": 11, "url": 11, "sep": 11, "few": 11, "link": 11, "titan": 11, "student": 11, "fifa": 11, "cancer": 11, "waterpump": 11, "retail": 11, "mix": 11, "datazet": 11, "open_brows": 11, "sleep": 11, "bool": 11, "e": 11, "add": 11, "12": 11, "13": 11, "rect": 11, "377eb8": 11, "ffffff": 11, "same": 11, "recordingli": 11, "revers": 11, "_r": 11, "binari": 11, "binary_r": 11, "rainbow": 11, "bwr": 11, "seismic": 11, "pastel1": 11, "pair": 11, "set_path": 11, "full": 11, "pathnam": 11, "setup_slid": 11, "figsiz": 11, "1500": 11, "800": 11, "titl": 11, "showfig": 11, "overwrit": 11, "notebook": 11, "height": 11, "resolut": 11, "save": 11, "window": 11, "exist": 11, "On": [11, 12], "event": 11, "depict": 11, "multipl": 11, "factor": 11, "action": [11, 12], "ipython": 11, "write_html": 11, "json_data": 11, "data_check": [11, 12], "edges2g": [11, 12], "get_support": [11, 12], "json_creat": [11, 12], "dump": 11, "library_compatibility_check": [11, 12], "compat": 11, "make_graph": [11, 12], "nodes2g": [11, 12], "remove_special_char": [11, 12], "special": 11, "charact": 11, "set_logg": [11, 12], "messag": 11, "aggfunc": 11, "sum": 11, "row": 11, "aggreg": 11, "relationship": 11, "creation": 12, "maintain": 12, "sponser": 12, "extens": 12, "abstract": 12, "motiv": 12, "quickstart": 12, "uninstal": 12, "core": 12, "big": 12, "bang": 12, "club": 12, "sponsor": [12, 13], "medium": [12, 13], "blog": 12, "cite": 12, "qualiti": 12, "modul": 12, "search": 12}, "objects": {"d3graph": [[11, 0, 0, "-", "d3graph"]], "d3graph.d3graph": [[11, 1, 1, "", "adjmat2dict"], [11, 1, 1, "", "adjmat2vec"], [11, 1, 1, "", "create_unique_dataframe"], [11, 2, 1, "", "d3graph"], [11, 1, 1, "", "data_checks"], [11, 1, 1, "", "edges2G"], [11, 1, 1, "", "get_support"], [11, 1, 1, "", "json_create"], [11, 1, 1, "", "library_compatibility_checks"], [11, 1, 1, "", "make_graph"], [11, 1, 1, "", "nodes2G"], [11, 1, 1, "", "remove_special_chars"], [11, 1, 1, "", "set_logger"], [11, 1, 1, "", "vec2adjmat"]], "d3graph.d3graph.d3graph": [[11, 3, 1, "", "display"], [11, 3, 1, "", "get_cluster_color"], [11, 3, 1, "", "graph"], [11, 3, 1, "", "import_example"], [11, 3, 1, "", "open_browser"], [11, 3, 1, "", "set_edge_properties"], [11, 3, 1, "", "set_node_properties"], [11, 3, 1, "", "set_path"], [11, 3, 1, "", "setup_slider"], [11, 3, 1, "", "show"], [11, 3, 1, "", "write_html"]]}, "objtypes": {"0": "py:module", "1": "py:function", "2": "py:class", "3": "py:method"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "function", "Python function"], "2": ["py", "class", "Python class"], "3": ["py", "method", "Python method"]}, "titleterms": {"abstract": 0, "schemat": 0, "overview": 0, "code": 1, "qualiti": 1, "librari": 1, "style": [1, 3, 6], "complex": 1, "unit": 1, "test": 1, "core": 2, "function": 2, "import": 2, "init": 2, "process": 2, "show": 2, "hide": 2, "slider": 2, "d3": 3, "motiv": 3, "four": 3, "part": 3, "The": 3, "cascad": 3, "sheet": 3, "css": 3, "modul": 3, "javascript": 3, "network": [3, 7], "data": [3, 12], "input": 4, "adjac": 4, "matrix": 4, "creat": [4, 8], "output": 4, "sponsor": 5, "medium": 5, "blog": 5, "github": 5, "cite": 5, "edg": [6, 7, 9], "properti": [6, 9], "gener": 6, "marker": 6, "scale": 6, "label": [6, 9], "set": 6, "distanc": 6, "big": 7, "bang": 7, "default": 7, "node": [7, 9], "color": [7, 9], "fontcolor": [7, 9], "size": [7, 9], "colormap": 7, "direct": 7, "arrow": 7, "karat": 7, "club": 7, "quickstart": 8, "instal": [8, 12], "environ": 8, "uninstal": 8, "tooltip": 9, "cluster": 9, "fontsiz": 9, "opac": 9, "custom": 9, "one": 9, "specif": 9, "On": 10, "click": 10, "action": 10, "d3graph": 12, "content": 12, "background": 12, "method": 12, "exampl": 12, "document": 12, "indic": 12, "tabl": 12}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx": 60}, "alltitles": {"Abstract": [[0, "abstract"]], "Schematic overview": [[0, "schematic-overview"]], "Coding quality": [[1, "coding-quality"]], "library": [[1, "library"]], "Style": [[1, "style"]], "Complexity": [[1, "complexity"]], "Unit tests": [[1, "unit-tests"]], "Core Functionalities": [[2, "core-functionalities"]], "Import": [[2, "import"]], "Initalization": [[2, "initalization"]], "Processing": [[2, "processing"]], "Show": [[2, "show"]], "Hide Slider": [[2, "hide-slider"]], "D3 Motivation": [[3, "d3-motivation"]], "Four parts": [[3, "four-parts"]], "The Cascading Style Sheets (CSS)": [[3, "the-cascading-style-sheets-css"]], "D3 module": [[3, "d3-module"]], "Javascript for the network": [[3, "javascript-for-the-network"]], "Data": [[3, "data"], [12, null]], "Input": [[4, "input"]], "Adjacency matrix": [[4, "adjacency-matrix"]], "Create adjacency matrix": [[4, "create-adjacency-matrix"]], "Output": [[4, "output"]], "Sponsor": [[5, "sponsor"]], "Medium Blog": [[5, "medium-blog"]], "Github": [[5, "github"]], "Citing": [[5, "citing"]], "Edge properties": [[6, "edge-properties"]], "General": [[6, "general"]], "Markers": [[6, "markers"]], "Scaling edges": [[6, "scaling-edges"]], "Edge Labels": [[6, "edge-labels"]], "Edge style": [[6, "edge-style"]], "Set distance": [[6, "set-distance"]], "Big Bang network": [[7, "big-bang-network"]], "Default": [[7, "default"]], "Node colors": [[7, "node-colors"]], "Node fontcolors": [[7, "node-fontcolors"]], "Node sizes": [[7, "node-sizes"]], "Edge sizes": [[7, "edge-sizes"]], "Edge colors": [[7, "edge-colors"]], "Colormap": [[7, "colormap"]], "Directed arrows": [[7, "directed-arrows"]], "Karate Club network": [[7, "karate-club-network"]], "Quickstart": [[8, "quickstart"]], "Installation": [[8, "installation"], [12, null]], "Create environment": [[8, "create-environment"]], "Uninstalling": [[8, "uninstalling"]], "Node properties": [[9, "node-properties"]], "Node label": [[9, "node-label"]], "Tooltips": [[9, "tooltips"]], "Node color": [[9, "node-color"]], "Node color on clustering": [[9, "node-color-on-clustering"]], "Node fontcolor": [[9, "node-fontcolor"]], "Node fontsize": [[9, "node-fontsize"]], "Node edge color on clustering": [[9, "node-edge-color-on-clustering"]], "Node size": [[9, "node-size"]], "Node opacity": [[9, "node-opacity"]], "Node edge size": [[9, "node-edge-size"]], "Node edge color": [[9, "node-edge-color"]], "Customize the properties of one specific node": [[9, "customize-the-properties-of-one-specific-node"]], "On Click Actions": [[10, "on-click-actions"]], "D3Graph": [[12, "d3graph"]], "Content": [[12, "content"]], "Background": [[12, null]], "Methods": [[12, null]], "Examples": [[12, null]], "Documentation": [[12, null]], "Indices and tables": [[12, "indices-and-tables"]]}, "indexentries": {"adjmat2dict() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.adjmat2dict"]], "adjmat2vec() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.adjmat2vec"]], "create_unique_dataframe() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.create_unique_dataframe"]], "d3graph (class in d3graph.d3graph)": [[11, "d3graph.d3graph.d3graph"]], "d3graph.d3graph": [[11, "module-d3graph.d3graph"]], "data_checks() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.data_checks"]], "display() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.display"]], "edges2g() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.edges2G"]], "get_cluster_color() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.get_cluster_color"]], "get_support() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.get_support"]], "graph() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.graph"]], "import_example() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.import_example"]], "json_create() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.json_create"]], "library_compatibility_checks() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.library_compatibility_checks"]], "make_graph() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.make_graph"]], "module": [[11, "module-d3graph.d3graph"]], "nodes2g() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.nodes2G"]], "open_browser() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.open_browser"]], "remove_special_chars() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.remove_special_chars"]], "set_edge_properties() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.set_edge_properties"]], "set_logger() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.set_logger"]], "set_node_properties() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.set_node_properties"]], "set_path() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.set_path"]], "setup_slider() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.setup_slider"]], "show() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.show"]], "vec2adjmat() (in module d3graph.d3graph)": [[11, "d3graph.d3graph.vec2adjmat"]], "write_html() (d3graph.d3graph.d3graph method)": [[11, "d3graph.d3graph.d3graph.write_html"]]}}) \ No newline at end of file diff --git a/docs/pages/html/sponsor.html b/docs/pages/html/sponsor.html index 746d5bf..6d0e139 100644 --- a/docs/pages/html/sponsor.html +++ b/docs/pages/html/sponsor.html @@ -34,7 +34,7 @@ d3graph
      - 2.4.13 + 2.4.15