Skip to content

Commit 12e22d1

Browse files
committed
v.0.1.2
1 parent bfd9889 commit 12e22d1

21 files changed

+746
-405
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ inst/doc
77
.vscode
88
.DS_Store
99
.Rbuildignore
10+
*.Rmd
1011
CRAN-RELEASE
12+
cran-comments.md

DESCRIPTION

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Package: echarty
22
Title: Minimal R/Shiny Interface to Library 'Echarts JavaScript'
33
Date: 2021-02-20
4-
Version: 0.1.1
4+
Version: 0.1.2
55
Authors@R: c(
66
person("Larry", "Helgason", email = "larry@helgasoft.com", role = c("aut", "cre", "cph")),
77
person("John", "Coene", email = "jcoenep@gmail.com", role = c("aut", "cph"))
88
)
99
Author: Larry Helgason [aut, cre, cph],
1010
John Coene [aut, cph]
1111
Maintainer: Larry Helgason <larry@helgasoft.com>
12-
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.
12+
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.
1313
Depends: R (>= 3.0.0)
1414
License: Apache License (>= 2.0)
1515
LazyData: true
@@ -20,8 +20,7 @@ Imports:
2020
magrittr,
2121
shiny,
2222
purrr,
23-
jsonlite,
24-
rstudioapi
23+
jsonlite
2524
Suggests:
2625
rmarkdown,
2726
knitr

NAMESPACE

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Generated by roxygen2: do not edit by hand
22

33
export("%>%")
4-
export(ec.band)
54
export(ec.data)
65
export(ec.examples)
76
export(ec.fromJson)
@@ -11,11 +10,14 @@ export(ec.inspect)
1110
export(ec.js2r)
1211
export(ec.plugjs)
1312
export(ec.theme)
13+
export(ecr.band)
14+
export(ecr.ebars)
1415
export(ecs.exec)
1516
export(ecs.output)
1617
export(ecs.proxy)
1718
export(ecs.render)
1819
import(htmlwidgets)
20+
import(shiny)
1921
importFrom(magrittr,"%>%")
2022
importFrom(utils,askYesNo)
2123
importFrom(utils,download.file)

NEWS.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
# log history of echarty package development
22

3-
## echarty 0.1.1
3+
## v. 0.1.2
4+
5+
- ec.data now with three format values
6+
- ec.fromJson has now "..." (additional arguments)
7+
- ecr.band has new parameter 'two' for alternative rendering
8+
- error bars added as ecr.ebars with support for grouped data
9+
- more examples in ec.examples
10+
- some code optimization
11+
12+
## v. 0.1.1
413

514
- added ec.plugjs - install unknown plugins, like JS maps
615
- added ec.js2r - a JS to R translation assistant, a Shiny app
716
- ec.init update: one-time install for all plugins except built-in leaflet/custom
817
- GL merged with 3D as plugin '3D'
9-
- more plugins: liquidfill, world, wordcloud, gmodularity
18+
- more plugins: liquidfill, world, wordcloud, gmodular
1019
- ec.sband renamed to ec.band
1120

12-
## echarty 0.1.0
21+
## v. 0.1.0
1322
- initial release, approved by CRAN Feb 16, 2021

0 commit comments

Comments
 (0)