#' Title bind two factor vectors
#'
#' @param a first character/factor vector
#' @param b second character/factor vector
#'
#' @return
#' @export
#'
#' @examples
#' fbind(iris$Species[1:5],iris$Species[6:7])
fbind <- function(a, b) {
factor(c(as.character(a), as.character(b)))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.