
Run the standard TPS analysis capsule on one data.frame
Source:R/tps_all_analyze.R
morie_tps_analyze_one.RdChains temporal + spatial + offence + concentration into a single
nested result. This is the function the 13 convenience aliases
(morie_tps_analyze_assault(), etc.) wrap.
Examples
# \donttest{
df <- try(morie_datasets_tps_assault(max_features = 200L))
if (!inherits(df, "try-error")) {
res <- try(morie_tps_analyze_one(df, name = "assault"))
if (!inherits(res, "try-error")) names(res)
}
#> [1] "title" "call" "summary_lines" "tables"
#> [5] "warnings" "interpretation" "payload" "sections"
#> [9] "temporal" "spatial" "offences" "concentration"
# }