mc_table: Generate tables with summarized GRAID counts (WIP)
Description
Constructs simple tables with counts for certain combinations of GRAID form,
person/animacy, and function symbols. In the current iteration, the GRAID
categories counted for the tables are predetermined and cannot be changed by
the user. The TEX files that can optionally be written by this function are
used for the 'Corpus counts' in the Multi-CAST documentation.
Usage
mc_table(data, by = "all", format = "wide", write = FALSE,
writeto = getwd(), output = "tex")
# NOT RUN {# generate a summary table for the entire collection mc <- multicast()
mc_table(mc)
# generate a summary table for the English corpus mc_table(mc[corpus == "english", ])
# }