#' @title turn string to vector
#' @description turn string to vector
#' @param string string
#' @param sep
#'
#' @return dataframe
#'
#' @examples
#'
#'
#' @rdname string2vector
#' @export
string2vector <-
function(string, sep){
unlist(stringr::str_split(string, sep))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.