79418945

Date: 2025-02-06 18:12:53
Score: 0.5
Natty:
Report link

While the accepted answer works(*), I think that there is a simpler solution:

install.packages(c("ada", "ipred", "evd"))
install.packages("http://cran.r-project.org/src/contrib/Archive/RecordLinkage/RecordLinkage_0.4-1.tar.gz")

That is, install.packages can take a URL, and so you don't need to manually download, install and delete the tarball. However, you do need to manually install the dependencies.

*The original answer was written 4 years ago and now generates this error:

ERROR: dependencies ‘e1071’, ‘RSQLite’, ‘ff’, ‘ffbase’ are not available for package ‘RecordLinkage’
 * removing ‘/Library/Frameworks/R.framework/Versions/4.4-arm64/Resources/library/RecordLinkage’

Presumably this is because the package's dependencies have changed. I get the same error with my solution. Also note that the ffbase package is also now archived.

Reasons:
  • Whitelisted phrase (-2): solution:
  • RegEx Blacklisted phrase (1): I get the same error
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I get the same error
Posted by: Ari