install.packages("DMwR")

install.packages("DMwR") Installing package into ‘C:/Users/Eliomar/Documents/R/win-library/4.0’ (as ‘lib’ is unspecified) Warning in install.packages : package ‘DMwR’ 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

1

1 Answer

See this page:

It has been removed. There are instructions there on how to retrieve it from the archive.

If you go to the archives page and download a version you like, install it like this:

install.packages( "Path/To/DMwR_0.4.1.tar.gz", repos=NULL, type="source" ) 

It will likely abort and list other dependencies not met. Install those first:

install.packages(c("zoo","xts","quantmod")) ## and perhaps mode 
14