Closed hermandr closed 4 years ago
Hi Herman,
Using unnest()
to unpack <hilo>
objects had to be removed when we added support for vctrs and dplyr v1.0.0 in fabletools v0.2.0. Unfortunately we couldn't give an informative error here, because unnest()
is from tidyr.
The unpack_hilo()
function continues to work, and you can now also access the elements of a <hilo>
using $
. For example, my_interval$lower
will give you the lower bound.
More details on the changes can be found here: https://fabletools.tidyverts.org/news/index.html
I will update the slides to reflect these changes.
Best, Mitch.
Thank you for the response. I can run the code and understand it now.
Herman
Hi,
I tried to knit the rmd from the materials folder. I encountered an error in "6-fable.Rmd" file on line 352. To reproduce the error the reprex is below.
What concerns me is unnest() of a fable does not work anymore. I tried to unnest the columns and it also failed.
Created on 2020-08-25 by the reprex package (v0.3.0)
Herman