powered by
Creates a dependency matrix from a precedence matrix (precedence_matrix) based on different approaches.
precedence_matrix
dependency_matrix( eventlog = NULL, dependency_type = dependency_type_fhm(threshold_dependency = threshold, threshold_frequency = threshold_frequency, ...), threshold = 0.9, threshold_frequency = 0, ... )
A square matrix with class dependency_matrix containing the computed dependency values between all activities.
dependency_matrix
A bupaR event log, may be NULL when a precedence matrix is provided.
Which approach to use for calculation of the dependency matrix. Currently only (dependency_type_fhm) is available.
dependency_type_fhm
A dependency threshold, usually in the interval [0,1], filtering out dependencies below the threshold.
[0,1]
An absolute frequency threshold filtering dependencies which are observed infrequently.
Parameters forwarded to (dependency_type_fhm).
d <- dependency_matrix(L_heur_1) print(d) as.matrix(d)
Run the code above in your browser using DataLab