Nothing
The tsg package provides a set of functions for generating frequency
tables, cross-tabulations, and formatted output tables. It is designed
to work with data frames and supports various customization options.
install.packages("tsg")
library(tsg)
generate_frequency(person_record, sex)
generate_crosstab(person_record, marital_status, sex)
person_record |>
generate_crosstab(marital_status, sex) |>
generate_output(
path = "crosstab.xlsx",
format = "xlsx"
)
More examples here.
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.