RDCOMClient for R 3.6

Viewed 5209
2 Answers

Use the package for version 3.5, it works without problems:

url <- "http://www.omegahat.net/R/bin/windows/contrib/3.5.1/RDCOMClient_0.93-0.zip"
install.packages(url, repos=NULL, type="binary")

You can install from Github using devtools (v.0.94-0) to R 3.6.

devtools::install_github("omegahat/RDCOMClient");
Related