3

I am trying to install the R package bigrf using the following command:

install.packages('bigrf')

However, I receive this error:

Warning in install.packages: package 'bigrf' is not available (for R version 3.0.2).

I understand that the package was not built for R version 3.0.2, but is it not possible for me to install it regardless with the understanding that it might not have complete forward compatibility?

lmo
  • 37,904
  • 9
  • 56
  • 69
Gyan Veda
  • 6,309
  • 11
  • 41
  • 66
  • There isn't a windows binary available for that package at all - you'll need to build it from source. – Dason Nov 05 '13 at 14:55
  • Thanks, @Dason! What does it mean to build it from source? Does it entail downloading the package source ('bigrf_0.1-6.tar.gz')? – Gyan Veda Nov 05 '13 at 14:59

1 Answers1

4

The safest thing to do would be to download the last version that the package was built for (link) and run the code on that version.

The easiest way to rebuild a package from source is using R-Studio.

They have a good walkthrough. You will need to use the devtools package as well.

Christopher Louden
  • 7,540
  • 2
  • 26
  • 29