powered by
Create a complete topology from data points with neighborhood structure
complete_topology(datos)
A list with four components:
list
List. The equivalence relation defined on the data, where each element represents a relationship between vertices based on their degrees and values.
List. The neighborhoods of each vertex, where each element contains the indices of neighboring vertices in the graph.
List. The base generated from intersections of neighborhoods, including the empty set, full set, and all non-empty intersections.
List. The complete topology generated by taking unions of base elements, satisfying the axioms of topological spaces.
Numeric vector containing the data points to analyze
data <- c(1, 2, 3, 4, 5) result <- complete_topology(data)
Run the code above in your browser using DataLab