Home > OS >  Cannot load R allanvar package
Cannot load R allanvar package

Time:05-26

I am trying to use the allanvar package which is documented on this rdocumentation page and this rdrr.io cran page. When I attempt to load it I get the following

    > install.packages("allanvar")
Error: package 'allanvar' is not available

Am I doing something wrong, or has it been yanked?

CodePudding user response:

This package is archived. This could be due to some minuscule thing that would be resolved soon, see this.

In the meantime, I'd install this using the GitHub repo:

remotes::install_github("jhidalgocarrio/allanvar")

CodePudding user response:

It has been archived since 2020. To get the last stable CRAN version (which passed all CRAN checks with R version 4.0.2), you can do:

devtools::install_version('allanvar', version = '1.1')
  •  Tags:  
  • r
  • Related