summaryrefslogtreecommitdiff
path: root/src/python/example/rips_complex_diagram_persistence_from_off_file_example.py
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-11-20 14:12:01 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-11-20 14:12:01 +0100
commit6bc1f27bbab03139718db674f98d748a7aeaced3 (patch)
tree5a4eaed1b8a1dd8cac6e0601fcb0cbf703555146 /src/python/example/rips_complex_diagram_persistence_from_off_file_example.py
parent57c1f0f4b36b934c8fc54c8691f77b9b6d0eff9d (diff)
Use matplotlib axes to be able to subplot persistence graphical tools
Diffstat (limited to 'src/python/example/rips_complex_diagram_persistence_from_off_file_example.py')
-rwxr-xr-xsrc/python/example/rips_complex_diagram_persistence_from_off_file_example.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/python/example/rips_complex_diagram_persistence_from_off_file_example.py b/src/python/example/rips_complex_diagram_persistence_from_off_file_example.py
index 2b335bba..b9074cf9 100755
--- a/src/python/example/rips_complex_diagram_persistence_from_off_file_example.py
+++ b/src/python/example/rips_complex_diagram_persistence_from_off_file_example.py
@@ -1,7 +1,8 @@
#!/usr/bin/env python
-import gudhi
import argparse
+import matplotlib.pyplot as plot
+import gudhi
""" This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT.
See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details.
@@ -64,8 +65,8 @@ with open(args.file, "r") as f:
print(simplex_tree.betti_numbers())
if args.no_diagram == False:
- pplot = gudhi.plot_persistence_diagram(diag, band=args.band)
- pplot.show()
+ gudhi.plot_persistence_diagram(diag, band=args.band)
+ plot.show()
else:
print(args.file, "is not a valid OFF file")