View source: R/tsqca_config_chart.R
| config_chart_multi_solutions | R Documentation |
Generates separate configuration charts for multiple solutions.
config_chart_multi_solutions(
solutions,
symbol_set = c("unicode", "ascii", "latex"),
language = c("en", "ja"),
condition_order = NULL,
show_epi = FALSE
)
solutions |
List of character vectors. Each element is a vector of paths for one solution. |
symbol_set |
Character. One of |
language |
Character. |
condition_order |
Character vector. Optional ordering of conditions. |
show_epi |
Logical. Whether to identify and display Essential Prime Implicants (EPIs) in the note. Default is FALSE. |
Character string containing Markdown-formatted tables.
# Multiple solutions
solutions <- list(
c("A*B", "C"),
c("A*B", "D"),
c("A*C")
)
chart <- config_chart_multi_solutions(solutions)
cat(chart)
# With EPI identification
chart <- config_chart_multi_solutions(solutions, show_epi = TRUE)
cat(chart)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.