Install older packages for R version 3.6.2

I want to install the pinusm/Mmisc package to be able to use the multi.test function. It keeps giving me an error saying: Error: Failed to install 'Mmisc' from GitHub:
(converted from warning) package ‘BayesMed’ is not available (for R version 3.6.2)

The syntax that I used was as follows:

install.packages("remotes")
remotes::install_github("pinusm/Mmisc")

Is there another way to install this package, or should I install an older version of R?

That is not going to work either, BayesMed is no longer on CRAN, you could try installing from the archive.
https://cran.r-project.org/src/contrib/Archive/BayesMed/

To follow this good advice, you could find this fonction useful:

or this one if you just want to download and install using install.packages with repos = NULL

Hope it helps.

1 Like

Thank you, I will check it out.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.