causing 2.4.3__tar.gz → 2.4.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.
Potentially problematic release.
This version of causing might be problematic. Click here for more details.
- {causing-2.4.3 → causing-2.4.4}/PKG-INFO +1 -1
- {causing-2.4.3 → causing-2.4.4}/causing/graph.py +4 -0
- {causing-2.4.3 → causing-2.4.4}/causing.egg-info/PKG-INFO +1 -1
- {causing-2.4.3 → causing-2.4.4}/setup.py +1 -1
- {causing-2.4.3 → causing-2.4.4}/LICENSE.md +0 -0
- {causing-2.4.3 → causing-2.4.4}/README.md +0 -0
- {causing-2.4.3 → causing-2.4.4}/causing/__init__.py +0 -0
- {causing-2.4.3 → causing-2.4.4}/causing/model.py +0 -0
- {causing-2.4.3 → causing-2.4.4}/causing/utils.py +0 -0
- {causing-2.4.3 → causing-2.4.4}/causing.egg-info/SOURCES.txt +0 -0
- {causing-2.4.3 → causing-2.4.4}/causing.egg-info/dependency_links.txt +0 -0
- {causing-2.4.3 → causing-2.4.4}/causing.egg-info/requires.txt +0 -0
- {causing-2.4.3 → causing-2.4.4}/causing.egg-info/top_level.txt +0 -0
- {causing-2.4.3 → causing-2.4.4}/setup.cfg +0 -0
- {causing-2.4.3 → causing-2.4.4}/tests/__init__.py +0 -0
- {causing-2.4.3 → causing-2.4.4}/tests/examples/__init__.py +0 -0
- {causing-2.4.3 → causing-2.4.4}/tests/examples/models.py +0 -0
- {causing-2.4.3 → causing-2.4.4}/tests/test_estimate.py +0 -0
- {causing-2.4.3 → causing-2.4.4}/tests/utils.py +0 -0
|
@@ -193,6 +193,10 @@ def create_graphs(graphs: Iterable[networkx.DiGraph], output_dir: Path, **kwargs
|
|
|
193
193
|
print("Create", filename)
|
|
194
194
|
dot_str = graph_to_dot(g, **kwargs)
|
|
195
195
|
save_graph(output_dir / filename, dot_str)
|
|
196
|
+
# save the dot string
|
|
197
|
+
dot_path = output_dir / f"IME_{g.graph['id']}.dot"
|
|
198
|
+
with open(dot_path, "w") as f:
|
|
199
|
+
f.write(dot_str)
|
|
196
200
|
|
|
197
201
|
|
|
198
202
|
def remove_node_keep_edges(graph, node):
|
|
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
5
5
|
|
|
6
6
|
setuptools.setup(
|
|
7
7
|
name="causing",
|
|
8
|
-
version="2.4.
|
|
8
|
+
version="2.4.4",
|
|
9
9
|
author="Dr. Holger Bartel",
|
|
10
10
|
author_email="holger.bartel@realrate.ai",
|
|
11
11
|
description="Causing: CAUSal INterpretation using Graphs",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|