Nothing
#' @title search_data_by_keyword
#' @description Given a key word, this function returns the dataset names including key word
#' @param key_word A data set name which is a character object
#' @return A character vector object that shows the name of the datasets including key word
#' @examples
#' \donttest{
#' search_data_by_keyword("ilce")
#' }
#' @export
search_data_by_keyword<-function(key_word){
data_list <- invisible(list_data_names())
stringr::str_subset(data_list,key_word)
}
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.