R/fortify.r

#' Fortify contingency tables
#'
#' @param model the contingency table
#' @param data data (unused)
#' @param ... (unused)
#' @export
fortify.table <- function(model, data, ...) {
  as_tibble(as.data.frame(model, stringsAsFactors=FALSE))
}

Try the ggalt package in your browser

Any scripts or data that you put into this service are public.

ggalt documentation built on May 2, 2019, 7:31 a.m.