Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yihui/recharts
An R Interface to Apache ECharts (incubating)
https://github.com/yihui/recharts
Last synced: 11 days ago
JSON representation
An R Interface to Apache ECharts (incubating)
- Host: GitHub
- URL: https://github.com/yihui/recharts
- Owner: yihui
- License: other
- Created: 2015-04-26T17:50:07.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-08-26T14:50:07.000Z (about 4 years ago)
- Last Synced: 2024-08-02T07:14:30.461Z (3 months ago)
- Language: R
- Homepage: https://recharts.yihui.org
- Size: 1.33 MB
- Stars: 115
- Watchers: 23
- Forks: 107
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-echarts - recharts - An R Interface to Apache ECharts (Languages / R)
README
# recharts
[![Build Status](https://travis-ci.org/yihui/recharts.svg)](https://travis-ci.org/yihui/recharts)
This is a prototype of porting [Apache ECharts (incubating)](https://echarts.apache.org/) 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](http://cran.rstudio.com/)):
```r
install.packages(
'recharts',
repos = c('http://yihui.name/xran', 'http://cran.rstudio.com')
)
```Some "hello world" examples:
```r
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 for more information if you want to contribute.