summaryrefslogtreecommitdiff
path: root/src/python/example/rips_complex_diagram_persistence_from_correlation_matrix_file_example.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/example/rips_complex_diagram_persistence_from_correlation_matrix_file_example.py')
-rwxr-xr-xsrc/python/example/rips_complex_diagram_persistence_from_correlation_matrix_file_example.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/python/example/rips_complex_diagram_persistence_from_correlation_matrix_file_example.py b/src/python/example/rips_complex_diagram_persistence_from_correlation_matrix_file_example.py
index 3571580b..0b35dbc5 100755
--- a/src/python/example/rips_complex_diagram_persistence_from_correlation_matrix_file_example.py
+++ b/src/python/example/rips_complex_diagram_persistence_from_correlation_matrix_file_example.py
@@ -1,8 +1,8 @@
#!/usr/bin/env python
-import gudhi
import sys
import argparse
+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.
@@ -40,7 +40,7 @@ parser.add_argument(
args = parser.parse_args()
if not (-1.0 < args.min_edge_correlation < 1.0):
- print("Wrong value of the treshold corelation (should be between -1 and 1).")
+ print("Wrong value of the threshold corelation (should be between -1 and 1).")
sys.exit(1)
print("#####################################################################")
@@ -83,5 +83,6 @@ invert_diag = [
]
if args.no_diagram == False:
- pplot = gudhi.plot_persistence_diagram(invert_diag, band=args.band)
- pplot.show()
+ import matplotlib.pyplot as plot
+ gudhi.plot_persistence_diagram(invert_diag, band=args.band)
+ plot.show()