Where can I find dev version 0.8.3.9000 of TidyR

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")
1 Like

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 ──
:heavy_check_mark: ggplot2 3.1.1 :heavy_check_mark: purrr 0.3.2
:heavy_check_mark: tibble 2.1.1 :heavy_check_mark: dplyr 0.8.1
:heavy_check_mark: tidyr 0.8.3.9000 :heavy_check_mark: stringr 1.4.0
:heavy_check_mark: readr 1.3.1 :heavy_check_mark: forcats 0.4.0

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.