-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
746 additions
and
405 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,6 @@ inst/doc | |
.vscode | ||
.DS_Store | ||
.Rbuildignore | ||
*.Rmd | ||
CRAN-RELEASE | ||
cran-comments.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
Package: echarty | ||
Title: Minimal R/Shiny Interface to Library 'Echarts JavaScript' | ||
Date: 2021-02-20 | ||
Version: 0.1.1 | ||
Version: 0.1.2 | ||
Authors@R: c( | ||
person("Larry", "Helgason", email = "[email protected]", role = c("aut", "cre", "cph")), | ||
person("John", "Coene", email = "[email protected]", role = c("aut", "cph")) | ||
) | ||
Author: Larry Helgason [aut, cre, cph], | ||
John Coene [aut, cph] | ||
Maintainer: Larry Helgason <[email protected]> | ||
Description: The goal is to deliver the full functionality of 'Echarts JavaScript' Version 5 with minimal overhead. 'Echarts JavaScript' is based on data structures. 'echarty' users build R lists for these same data structures. In general one to three 'echarty' commands are sufficient to produce any chart. | ||
Description: The goal is to deliver the full functionality of 'Echarts JavaScript' with minimal overhead. 'Echarts JavaScript' is based on data structures. 'echarty' users build R lists for these same data structures. In general one to three 'echarty' commands are sufficient to produce any chart. | ||
Depends: R (>= 3.0.0) | ||
License: Apache License (>= 2.0) | ||
LazyData: true | ||
|
@@ -20,8 +20,7 @@ Imports: | |
magrittr, | ||
shiny, | ||
purrr, | ||
jsonlite, | ||
rstudioapi | ||
jsonlite | ||
Suggests: | ||
rmarkdown, | ||
knitr | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,22 @@ | ||
# log history of echarty package development | ||
|
||
## echarty 0.1.1 | ||
## v. 0.1.2 | ||
|
||
- ec.data now with three format values | ||
- ec.fromJson has now "..." (additional arguments) | ||
- ecr.band has new parameter 'two' for alternative rendering | ||
- error bars added as ecr.ebars with support for grouped data | ||
- more examples in ec.examples | ||
- some code optimization | ||
|
||
## v. 0.1.1 | ||
|
||
- added ec.plugjs - install unknown plugins, like JS maps | ||
- added ec.js2r - a JS to R translation assistant, a Shiny app | ||
- ec.init update: one-time install for all plugins except built-in leaflet/custom | ||
- GL merged with 3D as plugin '3D' | ||
- more plugins: liquidfill, world, wordcloud, gmodularity | ||
- more plugins: liquidfill, world, wordcloud, gmodular | ||
- ec.sband renamed to ec.band | ||
|
||
## echarty 0.1.0 | ||
## v. 0.1.0 | ||
- initial release, approved by CRAN Feb 16, 2021 |
Oops, something went wrong.