Skip to content

Commit

Permalink
v.0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
helgasoft committed Mar 14, 2021
1 parent bfd9889 commit 12e22d1
Show file tree
Hide file tree
Showing 21 changed files with 746 additions and 405 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@ inst/doc
.vscode
.DS_Store
.Rbuildignore
*.Rmd
CRAN-RELEASE
cran-comments.md
7 changes: 3 additions & 4 deletions DESCRIPTION
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
Expand All @@ -20,8 +20,7 @@ Imports:
magrittr,
shiny,
purrr,
jsonlite,
rstudioapi
jsonlite
Suggests:
rmarkdown,
knitr
Expand Down
4 changes: 3 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Generated by roxygen2: do not edit by hand

export("%>%")
export(ec.band)
export(ec.data)
export(ec.examples)
export(ec.fromJson)
Expand All @@ -11,11 +10,14 @@ export(ec.inspect)
export(ec.js2r)
export(ec.plugjs)
export(ec.theme)
export(ecr.band)
export(ecr.ebars)
export(ecs.exec)
export(ecs.output)
export(ecs.proxy)
export(ecs.render)
import(htmlwidgets)
import(shiny)
importFrom(magrittr,"%>%")
importFrom(utils,askYesNo)
importFrom(utils,download.file)
15 changes: 12 additions & 3 deletions NEWS.md
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
Loading

0 comments on commit 12e22d1

Please sign in to comment.