#' This function subsets data related to a single word when many other words are present in a dataframe
#'
#' @param reshaped_df
#' @param word_to_subset
#'
#' @return
#' @export
#'
#' @examples
word_subset <- function(reshaped_df, word_to_subset){
reshaped_df %>% subset(word == word_to_subset)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.