# Simple usage with paths
paths <- c("A*B", "A*C*~D", "B*E")
chart <- config_chart_from_paths(paths)
cat(chart)
# With ASCII symbols
chart <- config_chart_from_paths(paths, symbol_set = "ascii")
cat(chart)
# With multiple solution note
chart <- config_chart_from_paths(paths, n_sol = 2)
cat(chart)
# With detailed note including EPIs
chart <- config_chart_from_paths(
paths, n_sol = 2,
solution_note_style = "detailed",
epi_list = c("A*B")
)
cat(chart)
Run the code above in your browser using DataLab