You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With gudhi 3.1.0, the axes shall not be handled this way:
' Usual Rips complex on X 'st_rips=gudhi.RipsComplex(X).create_simplex_tree(max_dimension=2) # create a Rips complex diagram_rips=st_rips.persistence() # compute the persistence# plot the persistence diagramfig, ax=plt.subplots()
gudhi.plot_persistence_diagram(diagram_rips)
ax.set_title('Persistence diagram of the Rips complex')
It is better to do:
# plot the persistence diagramgudhi.plot_persistence_diagram(diagram_rips)
plt.title('Persistence diagram of the Rips complex')
With gudhi 3.1.0, the axes shall not be handled this way:
It is better to do:
For axes management, cf. persistence density documentation
The text was updated successfully, but these errors were encountered: