https://github.com/johncoene/echarts4r
🐳 ECharts 5 for R
https://github.com/johncoene/echarts4r
echarts hacktoberfest htmlwidget htmlwidgets r rstats visualization
Last synced: 2 months ago
JSON representation
🐳 ECharts 5 for R
- Host: GitHub
- URL: https://github.com/johncoene/echarts4r
- Owner: JohnCoene
- License: other
- Created: 2018-03-12T16:08:27.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-02-22T16:31:27.000Z (over 1 year ago)
- Last Synced: 2024-05-01T15:29:27.102Z (about 1 year ago)
- Topics: echarts, hacktoberfest, htmlwidget, htmlwidgets, r, rstats, visualization
- Language: JavaScript
- Homepage: http://echarts4r.john-coene.com/
- Size: 154 MB
- Stars: 575
- Watchers: 18
- Forks: 81
- Open Issues: 145
-
Metadata Files:
- Readme: README.md
- Funding: FUNDING.yml
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[](https://github.com/JohnCoene/echarts4r/actions/workflows/R-CMD-check.yaml) [](https://github.com/JohnCoene/echarts4r/releases) [](https://github.com/JohnCoene/echarts4r/issues) [](https://cranlogs.r-pkg.org/badges/echarts4r) [](https://github.com/JohnCoene/echarts4r) [](https://coveralls.io/github/JohnCoene/echarts4r)
[Apache ECharts](https://echarts.apache.org/en/) version __5__ for R.
[Website](https://echarts4r.john-coene.com) |
[Shiny Demo](https://shiny.john-coene.com/echarts4rShiny/) | [Get
Started](https://echarts4r.john-coene.com/articles/get_started.html)## Note
The Github version is currently going through the update from ECharts.js version 4 to version 5: feel free to test it but there are some issues. Please use the stable CRAN version otherwise.
## Example
Basic example.
```r
library(echarts4r)e_chart(cars, speed) %>%
e_scatter(dist, symbolSize = 10)
```
## Get it
Stable version from CRAN.
```r
install.packages("echarts4r")
```The development version from Github.
```r
# install.packages("remotes")
remotes::install_github("JohnCoene/echarts4r")
```## Code of Conduct
Please note that the echarts4r project is released with a [Contributor Code of Conduct](https://github.com/JohnCoene/echarts4r/blob/master/CODE_OF_CONDUCT.md). By contributing to this project, you agree to abide by its terms.