#' Merge two factors into one
#'
#' @param a factor (or character vector)
#' @param b factor (or charcter vector)
#'
#' @return factor
#' @export
#' @examples
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.