Nothing
#' Return table name from ID column name
#'
#' This function generates the table name based on the provided ID column name.
#' It replaces the "id" suffix with "table" to obtain the table name.
#'
#' @param id_name The name of the ID column.
#'
#' @return The generated table name.
return_table_name_from_id <- function(id_name){
name = c()
for (i in seq_along(id_name)){
name[i] = base::sub("id$", "table", id_name[i])
}
return(name)
}
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.