Tibbles

Tibbles are a modern take on data frames. They keep the features that have stood the test of time, and drop the features that used to be convenient but are now frustrating (i.e. converting character vectors to factors).

Creating

tibble() is a nice way to create data frames. It encapsulates best practices for data frames:

Coercion

To complement tibble(), tibble provides as_tibble() to coerce objects into tibbles. Generally, as_tibble() methods are much simpler than as.data.frame() methods, and in fact, it’s precisely what as.data.frame() does, but it’s similar to do.call(cbind, lapply(x, data.frame)) - i.e. it coerces each component to a data frame and then cbinds() them all together.

as_tibble() has been written with an eye for performance:

l <- replicate(26, sample(100), simplify = FALSE)
names(l) <- letters

timing <- bench::mark(
  as_tibble(l),
  as.data.frame(l),
  check = FALSE
)

timing
#> # A tibble: 2 x 14
#>   expression     min    mean  median     max `itr/sec` mem_alloc  n_gc
#>   <chr>        <dbl>   <dbl>   <dbl>   <dbl>     <dbl>     <dbl> <dbl>
#> 1 as_tibble… 2.88e-4 6.25e-4 3.27e-4 0.00451     1600.      1840     5
#> 2 as.data.f… 7.92e-4 1.66e-3 1.10e-3 0.00765      601.     34584     5
#> # … with 6 more variables: n_itr <int>, total_time <dbl>, result <list>,
#> #   memory <list>, time <list>, gc <list>

The speed of as.data.frame() is not usually a bottleneck when used interactively, but can be a problem when combining thousands of messy inputs into one tidy data frame.

Tibbles vs data frames

There are three key differences between tibbles and data frames: printing, subsetting, and recycling rules.

Printing

When you print a tibble, it only shows the first ten rows and all the columns that fit on one screen. It also prints an abbreviated description of the column type, and uses font styles and color for highlighting:

#> # A tibble: 1,006 x 1
#>        x