causal_bindings: Compute input and output bindings
Description
Computes the input- and output bindings for use in a causal map. Several heuristics may be used to determine
the activities that are activated or consumed by an event. The Flexible Heuristic Miner (FHM) paper describes
a heuristic that looks ahead (or looks back) until the end of the trace and determines those activities as activated
for which no other cause (activity in a causal dependency) is found. This approach is implemented as type nearest.
Usage
causal_bindings(eventlog, dependencies, type = c("nearest"))
Value
A data frame
Arguments
eventlog
The bupaR event log.
dependencies
A dependency matrix obtained, for example, through dependency_matrix.
type
The heuristic used to determine the bindings. Currently only nearest is available.