BirthPersistenceTransform | R Documentation |
This is a class for the affine transformation (x,y) \mapsto
(x,y-x)
to be applied on persistence diagrams.
rgudhi::PythonClass
-> rgudhi::SKLearnClass
-> rgudhi::PreprocessingStep
-> BirthPersistenceTransform
new()
The BirthPersistenceTransform
constructor.
BirthPersistenceTransform$new()
An object of class BirthPersistenceTransform
.
clone()
The objects of this class are cloneable with this method.
BirthPersistenceTransform$clone(deep = FALSE)
deep
Whether to make a deep clone.
Mathieu Carrière
X <- seq_circle(10)
ac <- AlphaComplex$new(points = X)
st <- ac$create_simplex_tree()
dgm <- st$compute_persistence()$persistence_intervals_in_dimension(0)
bpt <- BirthPersistenceTransform$new()
bpt$apply(dgm)
bpt$fit_transform(list(dgm))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.