Open igordot opened 4 years ago
The GitHub examples do not have a proper 'library() call. For the CRAN version, the code is library(package_name), but for the GitHub version, it is library(user/package_name), so all examples fail.
'library()
library(package_name)
library(user/package_name)
For example, see https://rdrr.io/cran/tidyr/man/drop_na.html vs https://rdrr.io/github/tidyverse/tidyr/man/drop_na.html.
The GitHub examples do not have a proper
'library()
call. For the CRAN version, the code islibrary(package_name)
, but for the GitHub version, it islibrary(user/package_name)
, so all examples fail.For example, see https://rdrr.io/cran/tidyr/man/drop_na.html vs https://rdrr.io/github/tidyverse/tidyr/man/drop_na.html.