Fuzzy Mapper Algorithm (Fixed Adjacency Calculation)
FuzzyMapperAlgo(
original_data,
filter_values,
cluster_n = 5,
fcm_threshold = NULL,
methods,
method_params = list(),
num_cores = 1
)A MapperAlgo object same as MapperAlgo output
Original dataframe, not the filter values.
A data frame or matrix of the data to be analyzed.
Number of fuzzy clusters (c in FCM). Default is 5.
Membership threshold (tau). Points with u > tau are included in the interval.
Specify the clustering method to be used, e.g., "hclust" or "kmeans".
A list of parameters for the clustering method.
Number of cores to use for parallel computing.