http://nbviewer.jupyter.org/urls/dl.dropbox.com/s/ml8hacynadf78u3/Bionya.ipynb http://nbviewer.jupyter.org/github/domitry/nyaplot/blob/631e41866322205a14599860ac359c7b56cb59b1/examples/notebook/3DPlot.ipynb https://github.com/domitry/nyaplot/tree/631e41866322205a14599860ac359c7b56cb59b1/examples/notebook
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gcc testMathTool.c MathTool.c -lm -o test.out | |
| ./test.out | |
| rm ./test.out |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/graphspace_python/graphs/classes/gsgraph.py b/graphspace_python/graphs/classes/gsgraph.py | |
| index abf024c..790f3ab 100644 | |
| --- a/graphspace_python/graphs/classes/gsgraph.py | |
| +++ b/graphspace_python/graphs/classes/gsgraph.py | |
| @@ -470,7 +470,7 @@ class GSGraph(nx.DiGraph): | |
| attr_dict.update({"source": source, "target": target}) | |
| GSGraph.validate_edge_data_properties(data_properties=attr_dict, nodes_list=self.nodes()) | |
| - super(GSGraph, self).add_edge(source, target, attr_dict) | |
| + super(GSGraph, self).add_edge(source, target, **attr_dict) |
OlderNewer