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).
tibble()
is a nice way to create data frames. It encapsulates best practices for data frames:
It never changes an input’s type (i.e., no more stringsAsFactors = FALSE
!).
#> # A tibble: 26 x 1
#> x
#> <chr>
#> 1 a
#> 2 b
#> 3 c
#> 4 d
#> 5 e
#> 6 f
#> 7 g
#> 8 h
#> 9 i
#> 10 j
#> # … with 16 more rows
This makes it easier to use with list-columns:
#> # A tibble: 3 x 2
#> x y
#> <int> <list>
#> 1 1 <int [5]>
#> 2 2 <int [10]>
#> 3 3 <int [20]>
List-columns are most commonly created by do()
, but they can be useful to create by hand.
It never adjusts the names of variables:
#> [1] "crazy.name"
#> [1] "crazy name"
It evaluates its arguments lazily and sequentially:
#> # A tibble: 5 x 2
#> x y
#> <int> <dbl>
#> 1 1 1
#> 2 2 4
#> 3 3 9
#> 4 4 16
#> 5 5 25
It never uses row.names()
. The whole point of tidy data is to store variables in a consistent way. So it never stores a variable as special attribute.
It only recycles vectors of length 1. This is because recycling vectors of greater lengths is a frequent source of bugs.
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 n_itr
#> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <int>
#> 1 as_tibble… 2.88e-4 6.25e-4 3.27e-4 0.00451 1600. 1840 5 680
#> 2 as.data.f… 7.92e-4 1.66e-3 1.10e-3 0.00765 601. 34584 5 244
#> # … with 5 more variables: 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.
There are three key differences between tibbles and data frames: printing, subsetting, and recycling rules.
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
#> <int>
#> 1 -5
#> 2 -4
#> 3 -3
#> 4 -2
#> 5 -1
#> 6 0
#> 7 1
#> 8 2
#> 9 3
#> 10 4
#> # … with 996 more rows
You can control the default appearance with options:
options(tibble.print_max = n, tibble.print_min = m)
: if there are more than n
rows, print only the first m
rows. Use options(tibble.print_max = Inf)
to always show all rows.
options(tibble.width = Inf)
will always print all columns, regardless of the width of the screen.
Tibbles are quite strict about subsetting. [
always returns another tibble. Contrast this with a data frame: sometimes [
returns a data frame and sometimes it just returns a vector:
#> [1] "data.frame"
#> [1] "integer"
#> [1] "tbl_df" "tbl" "data.frame"
#> [1] "tbl_df" "tbl" "data.frame"
To extract a single column use [[
or $
:
#> [1] "integer"
#> [1] "integer"
Tibbles are also stricter with $
. Tibbles never do partial matching, and will throw a warning and return NULL
if the column does not exist:
#> [1] 1
#> Warning: Unknown or uninitialised column: 'a'.
#> NULL
As of version 1.4.1, tibbles no longer ignore the drop
argument:
#> [1] 1 2 3
#> [1] 1 2 3
When constructing a tibble, only values of length 1 are recycled. The first column with length different to one determines the number of rows in the tibble, conflicts lead to an error. This also extends to tibbles with zero rows, which is sometimes important for programming:
#> # A tibble: 3 x 2
#> a b
#> <dbl> <int>
#> 1 1 1
#> 2 1 2
#> 3 1 3
#> # A tibble: 3 x 2
#> a b
#> <int> <dbl>
#> 1 1 1
#> 2 2 1
#> 3 3 1
#> Error: Tibble columns must have consistent lengths, only values of length one are recycled:
#> * Length 2: Column `c`
#> * Length 3: Column `a`
#> # A tibble: 0 x 2
#> # … with 2 variables: a <dbl>, b <int>
#> # A tibble: 0 x 2
#> # … with 2 variables: a <int>, b <dbl>