Sign in with Microsoft
Sign in or create an account.
Hello,
Select a different account.
You have multiple accounts
Choose the account you want to sign in with.

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)

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

Need more help?

Expand your skills

EXPLORE TRAINING >

Get new features first

JOIN MICROSOFT 365 INSIDERS >

Was this information helpful?

What affected your experience?

Thank you for your feedback!

×