summaryrefslogtreecommitdiff
path: root/src/cython/doc
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-04-27 13:00:38 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-04-27 13:00:38 +0000
commit7ac3c086c6c794ac8c493a2c3abbd59624e81c06 (patch)
tree7558e53186a59c80c2f8631e7ed1e53003157d1f /src/cython/doc
parent62861adfd2de672d3d90e2fbade499fe76e5bca7 (diff)
Code and doc review with IFPEN :
plot_*: c'est quoi ce paramètre alpha ? band_boot: Renommer en 'band', sans référence au bootstrap. Ne pas l'utiliser dans la majorité des exemples / tutos. max_plots: mettre une valeur par défaut, pour éviter qu'on se retrouve trop facilement coincé à attendre 1h qu'il affiche des points. Éventuellement afficher un message indiquant que certains points n'ont pas été affichés et comment changer ça. barcode: trier les barres par date de naissance (le faire tout le temps ou avoir une option et le faire par défaut). git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/python_2.1.0_fix_vincent@3404 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: cfa775e425fbf12da1758d601ccbd80a2c7d3bc9
Diffstat (limited to 'src/cython/doc')
-rw-r--r--src/cython/doc/persistence_graphical_tools_user.rst4
-rwxr-xr-xsrc/cython/doc/pyplots/diagram_persistence.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/cython/doc/persistence_graphical_tools_user.rst b/src/cython/doc/persistence_graphical_tools_user.rst
index a5523d23..290b13c3 100644
--- a/src/cython/doc/persistence_graphical_tools_user.rst
+++ b/src/cython/doc/persistence_graphical_tools_user.rst
@@ -62,7 +62,7 @@ This function can display the persistence result as a diagram:
rips_complex = gudhi.RipsComplex(points=point_cloud, max_edge_length=0.2)
simplex_tree = rips_complex.create_simplex_tree(max_dimension=3)
diag = simplex_tree.persistence()
- plt = gudhi.plot_persistence_diagram(diag, band_boot=0.13)
+ plt = gudhi.plot_persistence_diagram(diag)
plt.show()
.. plot::
@@ -73,5 +73,5 @@ This function can display the persistence result as a diagram:
rips_complex = gudhi.RipsComplex(points=point_cloud, max_edge_length=0.2)
simplex_tree = rips_complex.create_simplex_tree(max_dimension=3)
diag = simplex_tree.persistence()
- plt = gudhi.plot_persistence_diagram(diag, band_boot=0.13)
+ plt = gudhi.plot_persistence_diagram(diag)
plt.show()
diff --git a/src/cython/doc/pyplots/diagram_persistence.py b/src/cython/doc/pyplots/diagram_persistence.py
index ac20bf47..5abf52b9 100755
--- a/src/cython/doc/pyplots/diagram_persistence.py
+++ b/src/cython/doc/pyplots/diagram_persistence.py
@@ -5,5 +5,5 @@ point_cloud = gudhi.read_off(off_file=gudhi.__root_source_dir__ + \
rips_complex = gudhi.RipsComplex(points=point_cloud, max_edge_length=0.2)
simplex_tree = rips_complex.create_simplex_tree(max_dimension=3)
diag = simplex_tree.persistence()
-plt = gudhi.plot_persistence_diagram(diag, band_boot=0.13)
+plt = gudhi.plot_persistence_diagram(diag)
plt.show()