Home > Blockchain >  Waterfall chart on echarts4r?
Waterfall chart on echarts4r?

Time:11-01

Hi and thanks for reading me I'm working with a bar chart on R with the Echarts4r package, but I want to do a waterfall chart and I don't find an option to do a plot like the following on the image: enter image description here

It's possible to do this chart type? The code I'm using for now is the following:

library(echarts4r)

df <- data.frame(
  
  var = sample(LETTERS, 5),
  value = rnorm(5, mean = 200, sd = 100)
)


df |> 
  e_charts(var) |> 
  e_bar(value)

CodePudding user response:

Not sure whether echarts4r offers an option out of the box but following with some data wrangling you could achieve your result as a stacked bar chart like so:

Disclaimer: I borrowed the basic idea from enter image description here

  • Related