I am trying to run the "rrpack" under version 4.2.0 of R. However, there was a missing function which was not provided under Rcpp 1.0.6. so I updated it to Rcpp 1.0.8.3. As a result, I'm confronted with the following error message:
Error in .Call("_rrpack_lasso_shooting", PACKAGE = "rrpack", xtx, xty, : "_rrpack_lasso_shooting" not available for .Call() for package "rrpack"
I found several threads describing this error message but only in the context of package development. Usual solutions are, for example, missing dynLib(packagename)
in the NAMEFILE
but the roxygen2
generated document looks fine so I ended up without any suggestions applicable to my case. The CRAN checks for rrpack are all "OK" so I am very unsure if this is a simple issue that can be fixed from my side or something else.
Thanks in advance!