I am trying to read an .rdb file to collect the R codes contained in it. However, when using the following code the following error appears, see:
> lazyLoad(filebase="treeTaper",envir=parent.frame())
NULL
>
The message seems to warn that there are no files that can be read, however, there are the files. In this case, how can I read this file and then collect the necessary information?
In the link provided below are the files
Note: Currently, the treeTaper package is no longer working, is this the reason?
install.packages("treeTaper")
Installing package into ‘C:/Users/Documents/R/win-library/4.0’
(as ‘lib’ is unspecified)
Warning in install.packages :
package ‘treeTaper’ is not available (for R version 4.0.2)
The
lazyLoad
function works primarily by side-effect, which to me means you shouldn't rely on (nor be discouraged by) theNULL
output.For instance,
If you want the objects to be available in a specific location, then control where it's going a little better. (The
envir=parent.frame()
you're using seems like it would be polluting the calling environment with these promise objects of help docs.)