Functions to mine causal association rules from a formal context.
find_causal_rules(
fc,
response_var,
min_support = 0.1,
confidence_level = 0.95,
max_length = 3,
verbose = FALSE
)A data frame with causal rules and their quality metrics.
A FormalContext object.
(character) The name of the response variable.
(numeric) Minimum support.
(numeric) Confidence level for the causality test.
(integer) Maximum length of the premise.
(logical) Show verbose output?