summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Glisse <marc.glisse@inria.fr>2022-11-04 23:02:56 +0100
committerMarc Glisse <marc.glisse@inria.fr>2022-11-04 23:02:56 +0100
commit454ef5370d5a188cd303c497ed473df9aac81708 (patch)
treec2a2fa21501675540d65678243edae0188dff6df
parentaa2dd7a0498594229fd828079bc069d71bbba59a (diff)
Use fetch_spiral_2d in the doc
-rw-r--r--src/python/doc/clustering.rst5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/python/doc/clustering.rst b/src/python/doc/clustering.rst
index c5a57d3c..62422682 100644
--- a/src/python/doc/clustering.rst
+++ b/src/python/doc/clustering.rst
@@ -17,9 +17,8 @@ As a by-product, we produce the persistence diagram of the merge tree of the ini
:include-source:
import gudhi
- f = open(gudhi.__root_source_dir__ + '/data/points/spiral_2d.csv', 'r')
- import numpy as np
- data = np.loadtxt(f)
+ from gudhi.datasets.remote import fetch_spiral_2d
+ data = fetch_spiral_2d()
import matplotlib.pyplot as plt
plt.scatter(data[:,0],data[:,1],marker='.',s=1)
plt.show()