#' Bind two factors
#'
#'Create a new factor from two smaller factors.
#'
#' @param a factor
#' @param b factor
#'
#' @return factor
#' @export
#'
#' @examples
#' fbind(iris$Species[c(1, 51, 101)], PlantGrowth$group[c(1, 11, 21)])
fbind <- function(a, b) {
factor(c(as.character(a), as.character(b)))
}
# Just putting a comment in here for purposes of exploring git functions.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.