#' Concatenate Levels of Two Factors
#'
#' @param a Factor
#' @param b Factor
#'
#' @return
#' @export fbind
#'
#' @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.