#' hub_plusを生成する
#'
#' hub_masterのhub_nameとlato_strictoから,hub_plusを生成.
#' 「/」での区切りがある場合は,前後両方に「lato_stricto」を追加
#'
#' @param Hub_name hub_name in hub_master
#' @param lato_stricto lato_stricto in hub_master
#'
#' @return string
#'
#' @examples
#' hub_master %>%
#' tibble::as_tibble() %>%
#' dplyr::rename_with(~stringr::str_replace_all(., "[ /]", "_")) %>%
#' dplyr::rename_with(~stringr::str_remove_all(., "[()]")) %>%
#' dplyr::mutate(hub_plus = hub2plus(Hub_name, lato_stricto))
#'
#' @export
hub2plus <- function(Hub_name, lato_stricto){
hub_name <-
Hub_name %>%
stringr::str_split("/")
purrr::map2(hub_name, lato_stricto, paste, sep="-", collapse="/") %>%
stringr::str_remove_all("-NA")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.