Run one implemented MORIE module against CPADS data
Examples
# \donttest{
# Dispatch one MORIE module against the canonical CPADS CSV. The CSV
# ships with a morie project tree, or is fetched via the CKAN endpoint
# (morie_load_dataset("ocp21")). Wrapped in tryCatch so the example
# documents usage even when the CSV is not checked out locally.
tryCatch(
morie_run_morie_module("descriptive-statistics"),
error = function(e) message(conditionMessage(e))
)
#> CPADS CSV not found: data/datasets/oc/CPADS/2021-2022/cpads-2021-2022-pumf2.csv
# }