'what is the new version of NBZIMM package for R 4.1.3

I have been having problems finding old packages for new nersion of R, any help appreciated

> install.packages('NBZIMM')
Warning in install.packages :
  package ‘NBZIMM’ is not available for this version of R

A version of this package for your version of R might be available elsewhere,
see the ideas at
https://cran.r-project.org/doc/manuals/r-patched/R-admin.html#Installing-packages


Solution 1:[1]

This was never on CRAN (or Bioconductor) are another curated R package repository. You do find it on github, though:

and this should even build the vignettes:

if(!require("remotes")) install.packages("remotes") # from CRAN
install.packages("R.rsp")# from CRAN; to build NBZIMM vignettes

remotes::install_github("nyiuab/NBZIMM")

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Martin Mächler