summaryrefslogtreecommitdiff
path: root/cython/doc/persistence_graphical_tools_user.rst
blob: cae1832312bd00313dfd423a79f950ef7623d929 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
Persistence graphical tools user manual
=======================================
Definition
----------
.. include:: persistence_graphical_tools_sum.rst


Show palette values
-------------------

This function is useful to show the color palette values of dimension:


.. testcode::

    import gudhi
    gudhi.show_palette_values(alpha=1.0)

.. plot::

    import gudhi
    gudhi.show_palette_values(alpha=1.0)

Show persistence as a barcode
-----------------------------

This function can display the persistence result as a barcode:

.. testcode::

    import gudhi
    
    periodic_cc = gudhi.PeriodicCubicalComplex(perseus_file='3d_torus.txt')
    diag = periodic_cc.persistence()
    gudhi.plot_persistence_barcode(diag)

.. plot::

    import gudhi

    periodic_cc = gudhi.PeriodicCubicalComplex(perseus_file='3d_torus.txt')
    diag = periodic_cc.persistence()
    gudhi.plot_persistence_barcode(diag)

Show persistence as a diagram
-----------------------------

This function can display the persistence result as a diagram:

.. testcode::

    import gudhi
    
    rips_complex = gudhi.RipsComplex(off_file='tore3D_300.off', max_edge_length=2.0)
    simplex_tree = rips_complex.create_simplex_tree(max_dimension=3)
    diag = simplex_tree.persistence()
    gudhi.plot_persistence_diagram(diag)

.. plot::

    import gudhi

    rips_complex = gudhi.RipsComplex(off_file='tore3D_300.off', max_edge_length=2.0)
    simplex_tree = rips_complex.create_simplex_tree(max_dimension=3)
    diag = simplex_tree.persistence()
    gudhi.plot_persistence_diagram(diag)