All Projects → yihui → recharts

yihui / recharts

Licence: other
An R Interface to Apache ECharts (incubating)

Programming Languages

r
7636 projects
javascript
184084 projects - #8 most used programming language

recharts

Build Status

This is a prototype of porting Apache ECharts (incubating) into R using htmlwidgets. I only spent a few days on it last year, and I hope more R users can contribute to it. To install this package (please use R >= 3.2.0):

install.packages(
  'recharts',
  repos = c('http://yihui.name/xran', 'http://cran.rstudio.com')
)

Some "hello world" examples:

library(recharts)
echart(iris, ~Sepal.Length, ~Sepal.Width)
echart(iris, ~Sepal.Length, ~Sepal.Width, series = ~Species)

See https://github.com/taiyun/recharts for a similar project that we worked on before. Without the blessings of htmlwidgets, it is much more difficult to maintain that project. I hope this one can grow into a truly nice and exciting package. See the package website http://yihui.name/recharts for more information if you want to contribute.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].