summaryrefslogtreecommitdiff
path: root/src/python/example/periodic_cubical_complex_barcode_persistence_from_perseus_file_example.py
diff options
context:
space:
mode:
authorVincent Rouvreau <10407034+VincentRouvreau@users.noreply.github.com>2020-11-04 08:19:30 +0100
committerGitHub <noreply@github.com>2020-11-04 08:19:30 +0100
commitcfd0814a486776fad899f253fdfc8940e08a2721 (patch)
treeb64288cc20c0ce221e14f1dd9d0111bab759a5e9 /src/python/example/periodic_cubical_complex_barcode_persistence_from_perseus_file_example.py
parent5cb101b209aa22a3aceae9aeee3a13b77a2de734 (diff)
parent92361d9a117a33e0d922417cfbb2e1653f2537df (diff)
Merge pull request #420 from VincentRouvreau/python_examples_with_matplotlib
import matplotlib only when necessary in examples
Diffstat (limited to 'src/python/example/periodic_cubical_complex_barcode_persistence_from_perseus_file_example.py')
-rwxr-xr-xsrc/python/example/periodic_cubical_complex_barcode_persistence_from_perseus_file_example.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/example/periodic_cubical_complex_barcode_persistence_from_perseus_file_example.py b/src/python/example/periodic_cubical_complex_barcode_persistence_from_perseus_file_example.py
index 499171df..ee3290c6 100755
--- a/src/python/example/periodic_cubical_complex_barcode_persistence_from_perseus_file_example.py
+++ b/src/python/example/periodic_cubical_complex_barcode_persistence_from_perseus_file_example.py
@@ -1,7 +1,6 @@
#!/usr/bin/env python
import argparse
-import matplotlib.pyplot as plot
import errno
import os
import gudhi
@@ -75,6 +74,7 @@ if is_file_perseus(args.file):
print("betti_numbers()=")
print(periodic_cubical_complex.betti_numbers())
if args.no_barcode == False:
+ import matplotlib.pyplot as plot
gudhi.plot_persistence_barcode(diag)
plot.show()
else: