R/tsqca_fiss_core.R
generate_fiss_chart.RdProduces a Markdown-formatted configuration chart following Fiss (2011), using four symbols to distinguish core conditions (present in both parsimonious and intermediate solutions) from peripheral conditions (present in intermediate solution only).
Sweep result augmented by compute_fiss_core.
Character vector. Condition names (row order).
If NULL, extracted from stored settings.
Character. One of "unicode" (default),
"ascii", or "latex".
Character. "en" (default) or "ja".
Character string: Markdown-formatted Fiss configuration chart.
Call compute_fiss_core first to augment the sweep result.
Fiss, P. C. (2011). Building better causal theories: A fuzzy set approach to typologies in organization research. Academy of Management Journal, 54(2), 393-420.
if (FALSE) { # \dontrun{
data(sample_data)
res <- otSweep(
dat = sample_data, outcome = "Y",
conditions = c("X1", "X2", "X3"),
sweep_range = 6:8,
thrX = c(X1 = 7, X2 = 7, X3 = 7),
include = "?", dir.exp = c(1, 1, 1),
return_details = TRUE
)
res_fiss <- compute_fiss_core(res, conditions = c("X1", "X2", "X3"))
cat(generate_fiss_chart(res_fiss))
cat(generate_fiss_chart(res_fiss, symbol_set = "latex"))
cat(generate_fiss_chart(res_fiss, language = "ja"))
} # }