summaryrefslogtreecommitdiff
path: root/src/python/example/euclidean_witness_complex_diagram_persistence_from_off_file_example.py
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-11-04 08:26:01 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-11-04 08:26:01 +0100
commitdaa3b08931e830212bc09130f7040d98d257b08f (patch)
treea4ad2e1f2a186a78aae05d8ca37c2da2bce1b75e /src/python/example/euclidean_witness_complex_diagram_persistence_from_off_file_example.py
parenta07430764c57c195c9260fc1b301ba0aeb77dcc7 (diff)
parent56dc7eb47cce596ee345dd7c6605dbee2f412f5e (diff)
Merge branch 'master' into weighted_alpha_complex_dD
Diffstat (limited to 'src/python/example/euclidean_witness_complex_diagram_persistence_from_off_file_example.py')
-rwxr-xr-xsrc/python/example/euclidean_witness_complex_diagram_persistence_from_off_file_example.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/example/euclidean_witness_complex_diagram_persistence_from_off_file_example.py b/src/python/example/euclidean_witness_complex_diagram_persistence_from_off_file_example.py
index 58cb2bb5..29076c74 100755
--- a/src/python/example/euclidean_witness_complex_diagram_persistence_from_off_file_example.py
+++ b/src/python/example/euclidean_witness_complex_diagram_persistence_from_off_file_example.py
@@ -3,7 +3,6 @@
import argparse
import errno
import os
-import matplotlib.pyplot as plot
import gudhi
""" This file is part of the Gudhi Library - https://gudhi.inria.fr/ -
@@ -79,6 +78,7 @@ with open(args.file, "r") as f:
print(simplex_tree.betti_numbers())
if args.no_diagram == False:
+ import matplotlib.pyplot as plot
gudhi.plot_persistence_diagram(diag, band=args.band)
plot.show()
else: