R/fbind.R

Defines functions fbind

Documented in fbind

#' 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)))
}
rressler/testpackagef20 documentation built on Sept. 28, 2020, 12:45 a.m.