All Questions

Tagged with
Filter by
Sorted by
Tagged with
3votes
1answer
3kviews

Convert Dataframe to make Waterfall Chart in ggplot2

I want to transform my dataframe into a format that would be suitable for a waterfall chart. My dataframe is as follows: employee <- c('A','B','C','D','E','F', 'A','B','C','D','E','F'...
user avatar
  • 3,705
0votes
1answer
938views

Stacked horizontal waterfall diagram [closed]

Which packages are preferable for making stacked horizontal waterfall diagrams? A diagram like this: The data for this plot is given by x <- data.frame(time = c(rep("this month",3),rep("last ...
user avatar
  • 1
0votes
1answer
99views

R ggplot2 waterfall problems

Hi I'm getting an error Error: Discrete value supplied to continuous scale when I execute below. Following a simple R waterfall tutorial at https://www.jigsawacademy.com/waterfall-charts-using-...
user avatar
  • 77
0votes
1answer
101views

R-waterfall diagram [closed]

when I try to create a waterfall with the following data, I take the following error. appreciate your support.. Below is the data: And this is the code and error:
user avatar
  • 63
0votes
1answer
115views

Adding subtotals to R data table as base for ggplot2 waterfall chart

I am trying to make a waterfall chart in R using the ggplot2 package. As there is no default template for it (and I want to stick to the ggplot2 package), I have to prepare the data by myself. I am ...
user avatar
  • 95
0votes
1answer
1kviews

How to include "think-cell"-like percentage changes in a waterfall-chart generated in ggplot2

I try to establish R as data visualisation tool in my company. A typical graph type used in my department are waterfall charts (https://en.wikipedia.org/wiki/Waterfall_chart). In R, there are some ...
user avatar
0votes
0answers
136views

Waterfall | R | ggplot2 | Error Message

I'm trying to plot a waterfall using sample code provided on the web. I'm getting an error message after the data prep and when it's time to do the plotting. # Create Plot plot <- ggplot(df, ...
user avatar