Following Hadley's tweet ... which pointed to [https://tidyr.tidyverse.org/dev/index.html](http://Tidyr 0.8.3.9000 )
Have installed the latest dev version 0.8.3 locally. It does not have the new rectangling functions unnest_longer(), unnest_wider(), unnest_auto(), and hoist().
Any help appreciated.
Have you install it this way?
devtools::install_github("tidyverse/tidyr")
Yes, now I see there is an error when I search for tidyr-package in Rstudio Help window.
Error in fetch(key) : lazy-load database '/Library/Frameworks/R.framework/Versions/3.4/Resources/library/tidyr/help/tidyr.rdb' is corrupt
It seems like you have a corrupted file, try uninstalling the package (or deleting the folder) and reinstall the development version.
remove.packages('tidyr')
Resolved. After installing the Dev version from GIT, I needed to run library(tidyverse) again to attached all the included packages. Below.
Thanks for your help.
library(tidyverse) ── Attaching packages ─────────────────────── tidyverse 1.2.1 ── ggplot2 3.1.1 purrr 0.3.2 tibble 2.1.1 dplyr 0.8.1 tidyr 0.8.3.9000 stringr 1.4.0 readr 1.3.1 forcats 0.4.0
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.