Nothing
#' @title Concatenate [DemographicTable] Objects
#'
#' @param ... one or more [DemographicTable] objects
#'
#' @returns
#' Function [c.DemographicTable()] returns a [DemographicTable] object.
#'
#' @keywords internal
#' @export c.DemographicTable
#' @export
c.DemographicTable <- function(...) {
ret <- list(...) |>
lapply(FUN = unclass) |> # a 'list' of 'list' (not 'listof')
do.call(what = c)
class(ret) <- c('DemographicTable', 'listof')
return(ret)
}
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.