#' This function modifies a block of text by randomly replacing a set
#' number of words with a random animal.
#'
#' @param text String Character
#' @param num_words Integer
#'
#' @return a string with the modified text
#' @export
#'
#' @examples
#' text = "Your chances of being ambushed by a duck are low... but never zero!"
#' textTransformer(text)
textTransformer <- function(text, num_words=1) {
if (!is.character(text)) {
stop("Function input must be data type character")
}
if (!is.numeric(num_words)) {
stop("Function input must be data type numeric")
}
if (!is.numeric(num_words)) {
stop("Function input must be data type numeric")
}
if (!grepl("[a-z]", text, ignore.case=TRUE)) {
stop("Text input must contain alphabetic characters")
}
word_list = list <- strsplit(text, " ")[[1]]
if (num_words > length(word_list)) {
stop("num_words cannot be larger than the word count of the text")
}
animal_list = c("duck", "elephant", "horse")
random_index <- floor(sample(1:length(word_list),
num_words,
replace = FALSE))
for (i in random_index){
word_list[i] = animal_list[[sample(1:length(animal_list), 1)]]
}
paste(word_list, collapse=' ')
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.