Rohan
Rohan

Reputation: 319

How can I install rMaps package in RStudio

I am following this tutorial https://www.youtube.com/watch?v=sSbb3PyaSu8

but when I try to install rMaps package it says

install.packages("rMaps") 

Warning in install.packages : package ‘rMaps’ is not available (for R version 3.4.0) Warning in install.packages : cannot open URL 'http://www.stats.ox.ac.uk/pub/RWin/bin/windows/contrib/3.4/PACKAGES.rds': HTTP status was '404 Not Found'

Upvotes: 0

Views: 853

Answers (1)

Hong Ooi
Hong Ooi

Reputation: 57686

rMaps is not on CRAN. You can install the dev version from Github.

require(devtools)
install_github('ramnathv/rCharts@dev')
install_github('ramnathv/rMaps')

Upvotes: 1

Related Questions