Error installing rCharts in R 3.1.1 (Windows)

Is there an rCharts assembly for R 3.1.1?

I tried 2 methods and both failed:

Method 1:

devtools::install_github('ramnathv/rCharts') Downloading github repo ramnathv/rCharts@master Error in function (type, msg, asError = TRUE) : couldn't connect to host 

Method 2: (manually download the package and run install.packages)

 install.packages("~/R/win-library/rCharts-master.zip", repos = NULL) Warning in install.packages : package '~/R/win-library/rCharts-master.zip' is not available (for R version 3.1.1) 

Edit: I tried:

 library(downloader) download("https://github.com/ramnathv/rCharts/archive/master.tar.gz", "rCharts.tar.gz") install.packages("rCharts.tar.gz", repos = NULL, type = "source") 

And now it works! Thanks!

+2
r rcharts
source share

No one has answered this question yet.

See similar questions:

8
R Install rCharts on R 3.4.2 x64

or similar:

5
Install the rCharts package on R 2.15.2
one
rCharts :: rPlot in click event
one
RNeo4j is not installed in RStudio
one
Error trying to install clusplus package
0
Unable to set d3heatmap in R
0
Failed to install package "rfm"
0
Cannot set_github to R (installation failed: search by timeout by name)
0
Unable to install [R] slidify package on Windows
0
Mission Coloring Library (rCharts Installation)
0
How to manually install rChart?

All Articles