R/as-tibble.R

Defines functions as_tibble.ypr_ecotypes as_tibble.ypr_populations as_tibble.ypr_population

#' @export
tibble::as_tibble

#' @export
as_tibble.ypr_population <- function(x, ...) {
  chk_unused(...)
  as_tibble(as.data.frame(x))
}

#' @export
as_tibble.ypr_populations <- function(x, ...) {
  chk_unused(...)
  as_tibble(as.data.frame(x))
}

#' @export
as_tibble.ypr_ecotypes <- function(x, ...) {
  chk_unused(...)
  as_tibble(as.data.frame(x))
}
poissonconsulting/ypr documentation built on April 4, 2023, 8:35 p.m.