rdatasculptor
rdatasculptor
TMHO it's all a matter of choosing the right parameters, the right colors and building it entirely the way you prefer. Do you have example code of your attempts? Maybe...
You can define the order of the factor levels using `factor()`
The thing with `e_river` is that you need real dates instead of integers. It could be group_by works, not sure, but I followed [this](https://echarts4r.john-coene.com/articles/chart_types#river) example with your data: ``` library(dplyr)...
The thing is I removed the whole group_by thing. Instead I made an e_river of each of your group variable. What happens if you copy my exact code and run...
What happens if you put it in this order: ` filled_data|>group_by(groups)|>mutate(dates = seq.Date(Sys.Date() - 30, Sys.Date(), by = "day")[1:n()])|>e_charts(dates)|> e_river(values) `
Without having tried your example: e_visual_map needs the same minimum and maximum value in each subgroup in order to let it work for every subgroup the same way. Usually I...
If you make animation time much longer you can see there is kind of transition between states. Although I must admit there seems to be something peculiar going on because...
That's because of not being able to use the axis modification, if you could have set min and max it would be solved. (My best guess). So the issue is...
@micboat can you add what you tried with e_grid modifications? Thanks!
Thanks! I think you put the wrong script in your answer. That's {echarty}, not {echarts4r} :).