View source: R/dependency_matrix.R
dependency_matrix | R Documentation |
Creates a dependency matrix from a precedence matrix (precedence_matrix
) based on different approaches.
dependency_matrix(
eventlog = NULL,
dependency_type = dependency_type_fhm(threshold_dependency = threshold,
threshold_frequency = threshold_frequency, ...),
threshold = 0.9,
threshold_frequency = 0,
...
)
eventlog |
A bupaR event log, may be NULL when a precedence matrix is provided. |
dependency_type |
Which approach to use for calculation of the dependency matrix. Currently only ( |
threshold |
A dependency threshold, usually in the interval |
threshold_frequency |
An absolute frequency threshold filtering dependencies which are observed infrequently. |
... |
Parameters forwarded to ( |
A square matrix with class dependency_matrix
containing the computed dependency values between all activities.
precedence_matrix
d <- dependency_matrix(L_heur_1)
print(d)
as.matrix(d)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.