I'm trying to install the augemented syntheric control package in R, but it seems that it needs 2 other packages that have been archived. ("Synth" and "LowRankQP")
Even when I install them from the archive, I ran to the same problem.
I installed the "Synth" and "LowRankQP" succesfuly, based on @r2evans suggestion
remotes::install_github(cran/LowRankQP)
remotes::install_github(cran/Synth)
and Here is the code that I use to install the package.
install.packages("devtools")install.packages("devtools")
devtools::install_github("ebenmichael/augsynth")
And here is new the error:
Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) :
namespace 'rlang' 1.0.6 is being loaded, but >= 1.1.0 is required
Calls: <Anonymous> ... namespaceImport -> loadNamespace -> namespaceImport -> loadNamespace
Execution halted
ERROR: lazy loading failed for package 'augsynth'
Any Ideas? Thanks a lot.