rdatasculptor
rdatasculptor
@jeroen, any plans in adding some formatting options? I agree with @stephLH on his remark about `setColWidths` function that auto-adjusts column width. `Writexl` really is a great package that does...
I do not quite understand the importance :), but you could, of course write your own function. Something like this when x is a data frame and not a list...
I think I ran into the same problem (or at least comparable) :). I have reproducible example for you: ``` df % group_by(group) %>% e_charts(x, timeline = TRUE) %>% e_bar(a,...
Not a solution to the problem in echarts4r I guess, but take a look at this very interesting approach of @helgasoft [Timeline with Sankey](https://helgasoft.github.io/echarty/uc4.html)
Additional remark: since Helgasoft uses version 5, I guess in theory it could be made possible in echarts4r? But maybe it's hard to implement in this particular chart type.
Hi John! I encountered exactly the same problem. I tried to make a graph based on x and y coordinates, but it obviously failed. Any news about this one? :)
@ziyingy I think we can use `e_list()`. But haven't succeeded yet in making the edges appear. Something like this: ``` nodes
Well, at least I succeeded in reproducing [this one](https://echarts.apache.org/examples/en/editor.html?c=graph-simple): ``` nodes
https://github.com/rdatasculptor/e_diagrammer/blob/main/e_charts_diagrammer.R
Hi Jorge-hercas, I am not entirely sure what you intend, but can't you solve your problem within `dplyr` instead of `echarts4r`, like this: ``` iris |> group_by(Species) |> mutate(Species =...