helgasoft
helgasoft
Stacked bar chart with factor categories + colors, sample by @mmfc ```r library(dplyr) ccv relocate(sum, .after=last_col()) |> group_by(status) |> ec.init(ctype= 'bar', series.param= list(stack= "stak"), tooltip= list(show=T), xAxis= list(type= 'category', data=...
A solution for **boxplot + data** chart using helper function _echarty::ec.data(format='boxplot',...)_ for @lhabegger and @varunrd ```r library(echarty) # use v.1.5.1+ # prepare data ds dplyr::relocate(Species) |> ec.data(format= 'boxplot', jitter= 0.1,...
Make data.tree **acme** dataset show as _sunburst_ chart, for @GillesSanMartin. See also [various hierarchical structures](https://helgasoft.github.io/echarty/uc3.html) for echarty explained. ```r library(data.tree) tmp
New in version 1.6.0 - save complete chart to file, show local or **remote** charts. @rdatasculptor will like it ``` remotes::install_github('helgasoft/echarty') # get latest v.1.6.0 library(echarty) # build a chart...
@pizifan, an [complex example](https://echarts.apache.org/examples/en/editor.html?c=mix-timeline-finance) indeed from ECharts. But [echarty](https://github.com/helgasoft/echarty/) can handle it. Currently _tl.series_ supports a single serie, but more can be added thru _ec.upd()_. Notice that list attributes are...
some less used chart types, translated to _echarty_ from official source, for @msgoussi ## waterfall ``` # original https://echarts.apache.org/examples/en/editor.html?c=bar-waterfall2 xdat
New [extras function 💲](https://helgasoft.github.io/echarty/extras.html#axisGroups) to build a two-level axis, with responsive auto-resize. Currently coded in Javascript, but usable with _ec.init_. R-code version planned also. Often used to present category groups,...
leaflet with timeline, for @leovan ```r tmp ec.init( load= 'leaflet', leaflet= list(layerControl= list(position= 'topright'), tiles= list( list( label= 'Open Street Map', urlTemplate= 'https://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png', options= list(attribution= '© OpenStreetMap, Tiles courtesy of...
Minimal Reproduction code is incomplete.
Was going to post about the same bug when I found this thread. @DavidMarquezF , I do not think this is about numeric vs string _categories_. String categories are ok....