tidyverts / tsibble

Tidy Temporal Data Frames and Tools
https://tsibble.tidyverts.org
GNU General Public License v3.0
531 stars 49 forks source link

Cannot bind_rows() with tsibbles #185

Closed mitchelloharawild closed 4 years ago

mitchelloharawild commented 4 years ago

Possibly an upstream issue/change:

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`.

Created on 2020-04-24 by the reprex package (v0.3.0)

earowang commented 4 years ago

it's just a duplicate of https://github.com/tidyverts/tsibble/issues/183

earowang commented 4 years ago

yes, it's related to vctrs https://github.com/r-lib/vctrs/issues/1021