Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

Unable to install rCharts package


View products that this article applies to.

Problem

The following warning message appears when installing rCharts source file in Linux:
> install.packages("ramnathv-rCharts-2c368c8.tar")
Warning message:
package ‘ramnathv-rCharts-2c368c8.tar’ is not available (for R version 3.0.2)

↑ Back to the top


Solution

Since the rCharts package is not on CRAN, you will need the devtools package to install it. The correct way to install it as described by the rCharts author is by following the instructions from this link:

http://ramnathv.github.io/rCharts/

Alternative methods to install it as mentioned by the author are as follows:
1. 
>install.packages('devtools')
>library(devtools)
>install_github("ramnathv/rCharts")

2.
>library(downloader)
>download("https://github.com/ramnathv/rCharts/archive/master.tar.gz", "rCharts.tar.gz")
>install.packages("rCharts.tar.gz", repos = NULL, type = "source")
Some reference links as well to guide you with installing rCharts:
https://github.com/ramnathv/rMaps/issues/11
https://github.com/ramnathv/rCharts/issues/411

↑ Back to the top


Keywords: kb

↑ Back to the top

Article Info
Article ID : 3103811
Revision : 1
Created on : 1/7/2017
Published on : 11/1/2015
Exists online : False
Views : 77