#' Save the Output
#'
#' @param save_dir The directory path.
#' @param file_name The name of the file (without extension or dot), in quotes.
#' @return saved evidence in an RDS file to capture artifacts from the probabilistic event.
#' @export
#' @examples
#' filesave(data_dir, "case1")
filesave <- function(save_dir = in_quotes, file_name = in_quotes) {
p <- model$kappa
message <- paste('THE KAPPA NUMBER FOR THIS LDA GIBBS MODEL IS', p)
case <- list(message, topics, school, work, family)
saveRDS(case, paste0(save_dir, file_name, d, ".RDS"))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.