library(dplyr)
#>
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#>
#> filter, lag
#> The following objects are masked from 'package:base':
#>
#> intersect, setdiff, setequal, union
library(tsibble)
bind_rows(
slice(tourism, 1:100),
slice(tourism, 101:n())
)
#> Error in vec_rbind(!!!dots, .names_to = .id): Internal error in `df_assign()`: Proxy of type `double` incompatible with type `character`.
Possibly an upstream issue/change:
Created on 2020-04-24 by the reprex package (v0.3.0)