Description Usage Arguments Details Value Examples
Calculates the persistent homology of a point cloud, as represented by a Vietoris-Rips complex. This function is an R wrapper for Ulrich Bauer's Ripser C++ library for calculating persistent homology. For more information on the C++ library, see https://github.com/Ripser/ripser.
1 2 3 4 5 6 7 8 9 | vietoris_rips(
dataset,
dim = 1,
threshold = -1,
p = 2L,
format = "cloud",
standardize = FALSE,
return_format = "df"
)
|
dataset |
numeric matrix containing point cloud or distance matrix |
dim |
maximum dimension of features to calculate |
threshold |
maximum diameter for computation of Vietoris-Rips complexes |
p |
number of the prime field Z/pZ to compute the homology over |
format |
format of |
standardize |
boolean determining whether point cloud size should be standardized |
return_format |
defaults to |
The mat
parameter should be a numeric matrix with each row corresponding
to a single point, and each column corresponding to a single dimension. Thus,
if mat
has 50 rows and 5 columns, it represents a point cloud with 50 points
in 5 dimensions. The dim
parameter should be a positive integer.
Alternatively, the mat
parameter could be a distance matrix (upper
triangular half is ignored); note: format
should be specified as "distmat".
3-column matrix or data frame, with each row representing a TDA feature
1 2 3 4 5 6 7 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.