Skip to contents

Written by Bill Venables (CSIRO/UQ)

Usage

untibble(tibble)

Arguments

tibble

The tibble to be converted to a data.frame

Value

df A stripped down dataframe

Examples

df <- tibble::tibble(x = c(1, 2), y = c("January", "February")) %>%
  untibble()
class(df)
#> [1] "data.frame"