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))
}

Try the ypr package in your browser

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

ypr documentation built on Aug. 30, 2022, 1:11 a.m.